From cf42565a20a12bafe518dac1d43a49a57f9e0c76 Mon Sep 17 00:00:00 2001 From: antelder Date: Fri, 26 Mar 2010 08:50:58 +0000 Subject: Rename test modules to simpler names git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@927735 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/itest/test/TestServiceImpl.java | 42 ++++++++++++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 24 +++++++++++++ .../src/main/resources/test-service.composite | 28 +++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 sca-java-2.x/trunk/itest/import-export/service/src/main/java/itest/test/TestServiceImpl.java create mode 100644 sca-java-2.x/trunk/itest/import-export/service/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/trunk/itest/import-export/service/src/main/resources/test-service.composite (limited to 'sca-java-2.x/trunk/itest/import-export/service/src') diff --git a/sca-java-2.x/trunk/itest/import-export/service/src/main/java/itest/test/TestServiceImpl.java b/sca-java-2.x/trunk/itest/import-export/service/src/main/java/itest/test/TestServiceImpl.java new file mode 100644 index 0000000000..3cc185d085 --- /dev/null +++ b/sca-java-2.x/trunk/itest/import-export/service/src/main/java/itest/test/TestServiceImpl.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 itest.test; + +import itest.iface.NonSimpleType; +import itest.iface.SomeException; +import itest.iface.TestService; + +public class TestServiceImpl implements TestService { + + public TestServiceImpl() { + } + + public String sayHello(String name) { + return "Hello " + name; + } + + public NonSimpleType testCT(NonSimpleType name) throws SomeException { + if ("bang".equals(name.getName())) { + throw new SomeException("bang"); + } + + return new NonSimpleType("Hello " + name.getName()); + } +} diff --git a/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..903995e557 --- /dev/null +++ b/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + + diff --git a/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/test-service.composite b/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/test-service.composite new file mode 100644 index 0000000000..5bf1f666e3 --- /dev/null +++ b/sca-java-2.x/trunk/itest/import-export/service/src/main/resources/test-service.composite @@ -0,0 +1,28 @@ + + + + + + + + + -- cgit v1.2.3