diff options
Diffstat (limited to 'sca-java-2.x/trunk/modules/node-manager/src/test/java')
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResource.java | 31 | ||||
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyService.java | 28 | ||||
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyLongRunningResourceImpl.java | 48 | ||||
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyOtherResourceImpl.java (renamed from sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResourceImpl.java) | 5 | ||||
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyResourceImpl.java | 42 | ||||
-rw-r--r-- | sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyServiceImpl.java (renamed from sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyServiceImpl.java) | 10 |
6 files changed, 159 insertions, 5 deletions
diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResource.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResource.java new file mode 100644 index 0000000000..74042d2561 --- /dev/null +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResource.java @@ -0,0 +1,31 @@ +/* + * 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 services; + +import javax.ws.rs.GET; +import javax.ws.rs.core.Response; + +import org.oasisopen.sca.annotation.Remotable; + +@Remotable +public interface MyResource { + @GET + Response getSomething(); +} diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyService.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyService.java new file mode 100644 index 0000000000..4a1b34eead --- /dev/null +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyService.java @@ -0,0 +1,28 @@ +/* + * 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 services; + +import org.oasisopen.sca.annotation.Remotable; + +@Remotable +public interface MyService { + + void doSomething(); +} diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyLongRunningResourceImpl.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyLongRunningResourceImpl.java new file mode 100644 index 0000000000..e041b99eb5 --- /dev/null +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyLongRunningResourceImpl.java @@ -0,0 +1,48 @@ +/* + * 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 services.impl; + +import javax.ws.rs.core.Response; + +import org.apache.tuscany.sca.node.manager.ManageableResource; +import services.MyResource; + +public class MyLongRunningResourceImpl implements MyResource, ManageableResource { + + @Override + public Response ping() { + System.out.println(">>> long running ping"); + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + return Response.ok("pong").build(); + } + + + @Override + public Response getSomething() { + System.out.println(">>> getSomething"); + return Response.ok("something").build(); + } + + +} diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResourceImpl.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyOtherResourceImpl.java index ac8b84a19d..09a26d42a7 100644 --- a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyResourceImpl.java +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyOtherResourceImpl.java @@ -17,18 +17,17 @@ * under the License. */ -package services; +package services.impl; import javax.ws.rs.core.Response; import org.apache.tuscany.sca.node.manager.ManageableResource; -public class MyResourceImpl implements ManageableResource { +public class MyOtherResourceImpl implements ManageableResource { @Override public Response ping() { System.out.println(">>> ping"); return Response.ok("pong").build(); } - } diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyResourceImpl.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyResourceImpl.java new file mode 100644 index 0000000000..6a0890fe1a --- /dev/null +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyResourceImpl.java @@ -0,0 +1,42 @@ +/* + * 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 services.impl; + +import javax.ws.rs.core.Response; + +import org.apache.tuscany.sca.node.manager.ManageableResource; + +import services.MyResource; + +public class MyResourceImpl implements MyResource, ManageableResource { + + @Override + public Response ping() { + System.out.println(">>> ping"); + return Response.ok("pong").build(); + } + + @Override + public Response getSomething() { + System.out.println(">>> getSomething"); + return Response.ok("something").build(); + } + +} diff --git a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyServiceImpl.java b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyServiceImpl.java index 770be99bc3..91b39f0fdd 100644 --- a/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/MyServiceImpl.java +++ b/sca-java-2.x/trunk/modules/node-manager/src/test/java/services/impl/MyServiceImpl.java @@ -17,11 +17,13 @@ * under the License. */ -package services; +package services.impl; import org.apache.tuscany.sca.node.manager.ManageableService; -public class MyServiceImpl implements ManageableService { +import services.MyService; + +public class MyServiceImpl implements MyService, ManageableService { @Override @@ -29,4 +31,8 @@ public class MyServiceImpl implements ManageableService { System.out.println(">>> isAlive"); } + @Override + public void doSomething() { + System.out.println(">>> doSomething"); + } } |