From 9425990f532b1152c2d73db96c0f07ef5216a3d1 Mon Sep 17 00:00:00 2001 From: lresende Date: Thu, 12 Nov 2009 00:43:48 +0000 Subject: Moving 2.x contribs git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835178 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/helloworld/HelloWorldImpl.java | 33 +++++++++++++++++++++ .../main/java/helloworld/HelloWorldService.java | 30 +++++++++++++++++++ .../src/main/resources/definitions.xml | 33 +++++++++++++++++++++ .../src/main/resources/helloworld.composite | 34 ++++++++++++++++++++++ 4 files changed, 130 insertions(+) create mode 100644 sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldImpl.java create mode 100644 sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldService.java create mode 100644 sca-java-2.x/contrib/itest/policy-security/src/main/resources/definitions.xml create mode 100644 sca-java-2.x/contrib/itest/policy-security/src/main/resources/helloworld.composite (limited to 'sca-java-2.x/contrib/itest/policy-security/src/main') diff --git a/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldImpl.java b/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldImpl.java new file mode 100644 index 0000000000..a75187f0d7 --- /dev/null +++ b/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldImpl.java @@ -0,0 +1,33 @@ +/* + * 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 helloworld; + +import org.oasisopen.sca.annotation.Service; + +/** + * This class implements the HelloWorld service. + */ +@Service(HelloWorldService.class) +public class HelloWorldImpl implements HelloWorldService { + + public String getGreetings(String name) { + return "Hello " + name; + } + +} diff --git a/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldService.java b/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldService.java new file mode 100644 index 0000000000..18f74b083f --- /dev/null +++ b/sca-java-2.x/contrib/itest/policy-security/src/main/java/helloworld/HelloWorldService.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 helloworld; + +import org.oasisopen.sca.annotation.Remotable; + +/** + * This is the business interface of the HelloWorld greetings service. + */ +@Remotable +public interface HelloWorldService { + + public String getGreetings(String name); +} diff --git a/sca-java-2.x/contrib/itest/policy-security/src/main/resources/definitions.xml b/sca-java-2.x/contrib/itest/policy-security/src/main/resources/definitions.xml new file mode 100644 index 0000000000..c8118a0caf --- /dev/null +++ b/sca-java-2.x/contrib/itest/policy-security/src/main/resources/definitions.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/contrib/itest/policy-security/src/main/resources/helloworld.composite b/sca-java-2.x/contrib/itest/policy-security/src/main/resources/helloworld.composite new file mode 100644 index 0000000000..9e0f289f87 --- /dev/null +++ b/sca-java-2.x/contrib/itest/policy-security/src/main/resources/helloworld.composite @@ -0,0 +1,34 @@ + + + + + + + + + + + + -- cgit v1.2.3