From 81597dfe29430f8b18cfa6c862964fce770d3c2a Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 13 Jan 2010 01:28:52 +0000 Subject: Cleaning up sandbox git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@898596 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/lresende/sca/itest/callback/pom.xml | 50 -------------------- .../java/org/apache/tuscany/sca/test/Client.java | 25 ---------- .../apache/tuscany/sca/test/ClientCallback.java | 24 ---------- .../org/apache/tuscany/sca/test/ClientImpl.java | 53 --------------------- .../apache/tuscany/sca/test/ServiceProvider.java | 38 --------------- .../tuscany/sca/test/ServiceProviderImpl.java | 51 -------------------- .../apache/tuscany/sca/test/CallBackTestCase.java | 54 ---------------------- .../org/apache/tuscany/sca/test/MainCallback.java | 35 -------------- .../callback/src/test/resources/callback.composite | 33 ------------- 9 files changed, 363 deletions(-) delete mode 100644 sandbox/lresende/sca/itest/callback/pom.xml delete mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java delete mode 100644 sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite (limited to 'sandbox/lresende') diff --git a/sandbox/lresende/sca/itest/callback/pom.xml b/sandbox/lresende/sca/itest/callback/pom.xml deleted file mode 100644 index 8025e50960..0000000000 --- a/sandbox/lresende/sca/itest/callback/pom.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - 4.0.0 - - org.apache.tuscany.sca - tuscany-itest - 1.5-SNAPSHOT - ../pom.xml - - itest-callback-douglas - Apache Tuscany SCA iTest Callback Scenario do Douglas - - - - org.apache.tuscany.sca - tuscany-host-embedded - 1.5-SNAPSHOT - - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 1.5-SNAPSHOT - runtime - - - - - ${basedir}/../build-was-integration.xml - ${basedir}/../wasAdmin.py - - diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java deleted file mode 100644 index 1338cbd0ba..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - - -public interface Client { - - public void someClientMethod(); -} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java deleted file mode 100644 index 0d31c790f8..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -public interface ClientCallback { - - public void receiveResult(String s); -} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java deleted file mode 100644 index 2fccc866ff..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -import java.util.logging.Level; -import java.util.logging.Logger; - -import org.osoa.sca.annotations.Reference; -import org.osoa.sca.annotations.Scope; -import org.osoa.sca.annotations.Service; - - -@Service(interfaces={Client.class, ClientCallback.class}) -@Scope("COMPOSITE") -public class ClientImpl implements ClientCallback, Client { - - @Reference - public ServiceProvider service; - - public void receiveResult(String s) { - System.out.println("client receiving the result: "+ s); - } - - public void someClientMethod() { - service.someServiceMethod(); - - try { - System.out.println("Sleeping at client!"); - Thread.sleep(1000); - } catch (InterruptedException ex) { - Logger.getLogger(ClientImpl.class.getName()).log(Level.SEVERE, null, ex); - } - System.out.println("Waking up at client!"); - - service.close(); - } -} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java deleted file mode 100644 index 1d62c4358f..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -import org.osoa.sca.annotations.Callback; -import org.osoa.sca.annotations.Conversational; -import org.osoa.sca.annotations.EndsConversation; -import org.osoa.sca.annotations.OneWay; - - - -@Conversational -@Callback(ClientCallback.class) -public interface ServiceProvider { - - @OneWay - public void someServiceMethod(); - - @EndsConversation - public void close(); - -} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java deleted file mode 100644 index d1dddbbc8d..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -import java.util.logging.Level; -import java.util.logging.Logger; -import org.osoa.sca.annotations.Callback; -import org.osoa.sca.annotations.Scope; -import org.osoa.sca.annotations.Service; - - -@Service(ServiceProvider.class) -@Scope("COMPOSITE") -public class ServiceProviderImpl implements ServiceProvider { - - @Callback - public ClientCallback callback; - - public void someServiceMethod() { - - try { - System.out.println("Sleeping at server!"); - Thread.sleep(5000); - } catch (InterruptedException ex) { - Logger.getLogger(ServiceProviderImpl.class.getName()).log(Level.SEVERE, null, ex); - } - System.out.println("Waking up at server!"); - - callback.receiveResult("RESULT"); - } - - public void close() { - System.out.println("Closing the conversation on the server!"); - } -} diff --git a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java deleted file mode 100644 index cd995952e3..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -import junit.framework.TestCase; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - -public class CallBackTestCase extends TestCase { - - private static SCADomain domain; - private Client callbackClient; - - public void testCallBackBasic() { - callbackClient.someClientMethod(); - } - - /** - * This function creates the SCADomain instance and gets an Instance of CallBackApiClient.class - */ - @Override - protected void setUp() throws Exception { - if (domain == null) { - domain = SCADomain.newInstance("callback.composite"); - } - - callbackClient = domain.getService(Client.class, "Consumer/Client"); - } - - /** - * This function destroys the SCADomain instance that was created in setUp() - */ - @Override - protected void tearDown() throws Exception { - domain.close(); - } - -} diff --git a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java deleted file mode 100644 index 1754e6b3d5..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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 org.apache.tuscany.sca.test; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - - -public class MainCallback { - - public static void main(String... args) { - SCADomain scaDomain = SCADomain.newInstance("callback.composite"); - - Client client = scaDomain.getService(Client.class, "Consumer"); - client.someClientMethod(); - - //scaDomain.close(); - } - -} diff --git a/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite b/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite deleted file mode 100644 index 9b01a46904..0000000000 --- a/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - -- cgit v1.2.3