summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java52
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java34
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java30
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java29
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml23
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/client.composite29
6 files changed, 197 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyClientImpl.java
new file mode 100644
index 0000000000..9937ea0b1e
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.2/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/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyService.java
new file mode 100644
index 0000000000..f22534e531
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.2/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/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/MyServiceCallback.java
new file mode 100644
index 0000000000..412b3c7584
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.2/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/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/java/callbackclient/TestService.java
new file mode 100644
index 0000000000..0ec6acf2d1
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.2/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/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml b/sca-java-1.x/branches/sca-java-1.6.2/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/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/META-INF/sca-contribution.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<contribution xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:cb="http://simplecallback">
+ <deployable composite="cb:client" />
+</contribution>
diff --git a/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/client.composite b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/client.composite
new file mode 100644
index 0000000000..33842c3853
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-1.6.2/itest/domainmgr/callback/client/src/main/resources/client.composite
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://simplecallback"
+ name="client">
+
+ <component name="MyClientComponent">
+ <implementation.java class="callbackclient.MyClientImpl" />
+ <reference name="myService" target="MyServiceComponent/MyService" />
+ </component>
+
+</composite>