From a40e527938d76ba71f211da7e327adb50384ba69 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:26:33 +0000 Subject: Moving 1.x tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/callbackclient/MyClientImpl.java | 52 ++++++++++++++++++++++ .../src/main/java/callbackclient/MyService.java | 34 ++++++++++++++ .../java/callbackclient/MyServiceCallback.java | 30 +++++++++++++ .../src/main/java/callbackclient/TestService.java | 29 ++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 23 ++++++++++ .../client/src/main/resources/client.composite | 29 ++++++++++++ 6 files changed, 197 insertions(+) create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/client.composite (limited to 'sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src') diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java new file mode 100644 index 0000000000..9937ea0b1e --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package callbackclient; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +/** + * Demonstrates a component-to-component callback invocation + */ +@Service(TestService.class) +public class MyClientImpl implements TestService { + + private MyService myService; + private static String result; + + @Reference + protected void setMyService(MyService myService) { + this.myService = myService; + } + + public void runTest() { + System.out.println("MyClientImpl.runTest"); + myService.someMethod("-> someMethod"); + } + + public String getResult() { + System.out.println("MyClientImpl.getResult"); + return MyClientImpl.result; + } + + public void receiveResult(String result) { + System.out.println("MyClientImpl.receiveResult: result=" + result); + MyClientImpl.result = result; + } +} diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java new file mode 100644 index 0000000000..f22534e531 --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package callbackclient; + +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.OneWay; +import org.osoa.sca.annotations.Remotable; + +/** + * This service that will be invoked in a non-blocking fashion + */ +@Remotable +@Callback(MyServiceCallback.class) +public interface MyService { + + @OneWay + void someMethod(String arg); +} diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java new file mode 100644 index 0000000000..412b3c7584 --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package callbackclient; + +import org.osoa.sca.annotations.Remotable; + +/** + * The callback interface for {@link MyService}. + */ +@Remotable +public interface MyServiceCallback { + + void receiveResult(String result); +} diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java new file mode 100644 index 0000000000..0ec6acf2d1 --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package callbackclient; + +/** + * Test driver interface + */ +public interface TestService { + + void runTest(); + + String getResult(); +} diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..1c37dd00b0 --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + diff --git a/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/client.composite b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/client.composite new file mode 100644 index 0000000000..33842c3853 --- /dev/null +++ b/sca-java-1.x/tags/1.5.1-RC1/itest/domainmgr/callback/client/src/main/resources/client.composite @@ -0,0 +1,29 @@ + + + + + + + + + + -- cgit v1.2.3