summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/nodes/test-iface-export
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-26 08:42:05 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-26 08:42:05 +0000
commit7f7d926ba48e7f5e0e0b4134646b456c7086d832 (patch)
treeceb77fd225e2b1bbec723b583e0629faa9aced51 /sca-java-2.x/trunk/itest/nodes/test-iface-export
parent23141fc721e1f1b3a9a70ae1ef0042ba82f94ca4 (diff)
Create a separate itest folder for imports/exports and move the existing tests from nodes to there in preparation for the imports acrsoss nodes work
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@927732 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/itest/nodes/test-iface-export')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/test-iface-export/pom.xml39
-rw-r--r--sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/NonSimpleType.java40
-rw-r--r--sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/SomeException.java41
-rw-r--r--sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/TestService.java31
-rw-r--r--sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/resources/META-INF/sca-contribution.xml23
5 files changed, 0 insertions, 174 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/test-iface-export/pom.xml b/sca-java-2.x/trunk/itest/nodes/test-iface-export/pom.xml
deleted file mode 100644
index 0bb6c1f5c8..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/test-iface-export/pom.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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.
--->
-<project>
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-itest</artifactId>
- <version>2.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>itest-nodes-test-iface-export</artifactId>
- <name>Apache Tuscany SCA iTest Nodes Test Iface Export</name>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-sca-api</artifactId>
- <version>2.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-</project>
diff --git a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/NonSimpleType.java b/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/NonSimpleType.java
deleted file mode 100644
index 6d75a43b2b..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/NonSimpleType.java
+++ /dev/null
@@ -1,40 +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 itest.iface;
-
-public class NonSimpleType {
-
- protected String name;
-
- public NonSimpleType() {
- }
-
- public NonSimpleType(String name) {
- this.name = name;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-}
diff --git a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/SomeException.java b/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/SomeException.java
deleted file mode 100644
index 1cbeee7020..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/SomeException.java
+++ /dev/null
@@ -1,41 +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 itest.iface;
-
-public class SomeException extends Exception {
-
- public SomeException() {
- super();
- }
-
- public SomeException(String msg) {
- super(msg);
- }
-
-
- public SomeException(Exception cause) {
- super(cause);
- }
-
- public SomeException(String msg, Exception cause) {
- super(msg, cause);
- }
-
-}
diff --git a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/TestService.java b/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/TestService.java
deleted file mode 100644
index 4aeab0ffda..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/java/itest/iface/TestService.java
+++ /dev/null
@@ -1,31 +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 itest.iface;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-@Remotable
-public interface TestService {
-
- String sayHello(String name);
-
- NonSimpleType testCT(NonSimpleType name) throws SomeException;
-
-}
diff --git a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/resources/META-INF/sca-contribution.xml
deleted file mode 100644
index 5f1cc96bef..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/test-iface-export/src/main/resources/META-INF/sca-contribution.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:itest="http://itest">
- <export.java package="itest.iface"/>
-</contribution> \ No newline at end of file