diff options
Diffstat (limited to 'branches/sca-java-2.0-M2/stest')
158 files changed, 0 insertions, 8262 deletions
diff --git a/branches/sca-java-2.0-M2/stest/pom.xml b/branches/sca-java-2.0-M2/stest/pom.xml deleted file mode 100644 index 8c4dad4f88..0000000000 --- a/branches/sca-java-2.0-M2/stest/pom.xml +++ /dev/null @@ -1,57 +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-sca</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>tuscany-stests</artifactId>
- <packaging>pom</packaging>
- <name>Apache Tuscany SCA Specification Tests</name>
-
- <repositories>
- <repository>
- <id>apache.incubator</id>
- <url>http://people.apache.org/repo/m2-incubating-repository</url>
- </repository>
- </repositories>
-
- <profiles>
- <profile>
- <id>default</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>sampleTest</module>
- </modules>
- </profile>
- <profile>
- <id>old</id>
- <modules>
- <module>binding-echo</module>
- </modules>
- </profile>
- </profiles>
-
-</project>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/pom.xml b/branches/sca-java-2.0-M2/stest/sampleTest/pom.xml deleted file mode 100644 index 1ad73fb9ab..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/pom.xml +++ /dev/null @@ -1,105 +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-stests</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>stest-sampleTest</artifactId>
- <name>Apache Tuscany SCA Specification Sample Testcase</name>
-
- <repositories>
- <repository>
- <id>apache.incubator</id>
- <url>http://people.apache.org/repo/m2-incubating-repository</url>
- </repository>
- </repositories>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-api</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-launcher-equinox</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-impl</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-implementation-java-runtime</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-implementation-node-runtime</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-extensibility-equinox</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-binding-ws-xml</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-binding-ws-axis2</artifactId>
- <version>2.0-M2-SNAPSHOT</version>
- <!-- <scope>runtime</scope> -->
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- <scope>test</scope>
- </dependency>
-
- </dependencies>
-
- <build>
- <finalName>${artifactId}</finalName>
- </build>
-</project>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0001_Client.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0001_Client.java deleted file mode 100644 index dff88ce8ca..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0001_Client.java +++ /dev/null @@ -1,67 +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 test;
-
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Basic test initiation class
- * @author MikeEdwards
- *
- */
-@Service(TestInvocation.class)
-public class ASM_0001_Client implements TestInvocation {
-
- private String testName = "ASM_0001";
-
- /**
- * This method is offered as a service and is
- * invoked by the test client to run the test
- */
- public String invokeTest(String input) throws TestException {
- String response = null;
-
- response = runTest(input);
-
- return response;
- } // end method invokeTest
-
- /**
- * This method actually runs the test - and is subclassed by classes that run other tests.
- * @param input - an input string
- * @return - a response string = "ASM_0001 inputString invoked ok";
- *
- */
- public String runTest(String input) {
- String response = null;
-
- response = testName + " " + input + " invoked ok";
-
- return response;
- } // end method runTest
-
- /**
- * Sets the name of the test
- * @param name - the test name
- */
- protected void setTestName(String name) {
- testName = name;
- }
-
-} //
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0002_Client.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0002_Client.java deleted file mode 100644 index 673dde9590..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0002_Client.java +++ /dev/null @@ -1,80 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Test initiation class with a single reference of multiplicity 1..1
- * @author MikeEdwards
- *
- */
-@Service(TestInvocation.class)
-public class ASM_0002_Client implements TestInvocation {
-
- @Property
- public String testName = "ASM_xxxx";
-
- @Reference
- public Service1 reference1;
-
- /**
- * This method is offered as a service and is
- * invoked by the test client to run the test
- */
- public String invokeTest(String input) throws TestException {
- String response = null;
-
- try {
- response = runTest(input);
- } catch (Exception e) {
- throw new TestException("Test service got an exception during execution: " + e.getClass().getName()
- + " "
- + e.getMessage());
- } // end try
- return response;
- } // end method invokeTest
-
- /**
- * This method actually runs the test - and is subclassed by classes that run other tests.
- * @param input - an input string
- * @return - a response string = "ASM_0001 inputString invoked ok";
- *
- */
- public String runTest(String input) {
- String response = null;
-
- String response1 = reference1.operation1(input);
-
- response = testName + " " + input + " " + response1;
-
- return response;
- } // end method runTest
-
- /**
- * Sets the name of the test
- * @param name - the test name
- */
- protected void setTestName(String name) {
- testName = name;
- }
-
-} //
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0003_Client.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0003_Client.java deleted file mode 100644 index f6f4f1ccb8..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/ASM_0003_Client.java +++ /dev/null @@ -1,79 +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 test;
-
-import java.util.List;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Basic test initiation class
- * @author MikeEdwards
- *
- */
-@Service(TestInvocation.class)
-public class ASM_0003_Client implements TestInvocation {
-
- @Property
- public String testName = "ASM_xxxx";
-
- @Reference
- public List<Service1> reference1;
-
- /**
- * This method is offered as a service and is
- * invoked by the test client to run the test
- */
- public String invokeTest(String input) throws TestException {
- String response = null;
-
- response = runTest(input);
-
- return response;
- } // end method invokeTest
-
- /**
- * This method actually runs the test - and is subclassed by classes that run other tests.
- * @param input - an input string
- * @return - a response string = "ASM_0001 inputString invoked ok";
- *
- */
- public String runTest(String input) {
- String response = "";
-
- for (Service1 reference : reference1) {
- response += reference.operation1(input);
- } // end for
-
- response = testName + " " + input + " " + response;
-
- return response;
- } // end method runTest
-
- /**
- * Sets the name of the test
- * @param name - the test name
- */
- protected void setTestName(String name) {
- testName = name;
- }
-
-} //
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1.java deleted file mode 100644 index 713fa40563..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1.java +++ /dev/null @@ -1,39 +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 test;
-
-// TODO: Need to change *ALL* annotations to org.oasisopen.xxxx
-import org.oasisopen.sca.annotation.Remotable;
-
-/**
- * A test service interface
- * @author MikeEdwards
- *
- */
-@Remotable
-public interface Service1 {
-
- /**
- * Method for invoking testcase service
- * @param input - input parameter(s) as a String
- * @return - output data as a String
- */
- public String operation1(String input);
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1Superset.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1Superset.java deleted file mode 100644 index 7d3a2f2e9f..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service1Superset.java +++ /dev/null @@ -1,45 +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 test;
-
-/**
- * A superset of the basic test service interface
- * @author MikeEdwards
- *
- */
-import org.oasisopen.sca.annotation.Remotable;
-
-@Remotable
-public interface Service1Superset {
-
- /**
- * Method for invoking testcase service
- * @param input - input parameter(s) as a String
- * @return - output data as a String
- */
- public String operation1(String input);
-
- /**
- * A second method for invoking a testcase service
- * @param input - input parameter(s) as a String
- * @return - output data as a String
- */
- public String operation2(String input);
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service2.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service2.java deleted file mode 100644 index f834a4fbf1..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/Service2.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 test;
-
-/**
- * A test service interface, designed to be incompatible with the Service1 interface
- * @author MikeEdwards
- *
- */
-public interface Service2 {
-
- /**
- * Method for invoking testcase service
- * @param input - input parameter(s) as a String
- * @return - output data as a String
- */
- public int operation2(int input);
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestException.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestException.java deleted file mode 100644 index 158c5f4522..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestException.java +++ /dev/null @@ -1,47 +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 test;
-
-/*
- * Exception thrown by SCA Test services
- */
-public class TestException extends Exception {
-
- /**
- * Required serialVersionUID field
- */
- private static final long serialVersionUID = -6978058912756564824L;
-
- public TestException() {
- super();
- };
-
- public TestException(String msg) {
- super(msg);
- };
-
- public TestException(String msg, Throwable cause) {
- super(msg, cause);
- };
-
- public TestException(Throwable cause) {
- super(cause);
- };
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.class b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.class Binary files differdeleted file mode 100644 index 64e43c20c9..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.class +++ /dev/null diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.java deleted file mode 100644 index e5d781095f..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/TestInvocation.java +++ /dev/null @@ -1,42 +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 test;
-
-import javax.jws.WebMethod;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-/**
- * Basic interface to invoke testcases
- * @author MikeEdwards
- *
- */
-@Remotable
-public interface TestInvocation {
-
- /**
- * Method for invoking testcase
- * @param input - input parameter(s) as a String
- * @return - output data as a String
- * @throws - a TestException is thrown in cases where the test service fails internally
- */
- @WebMethod
- public String invokeTest(String input) throws TestException;
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl.java deleted file mode 100644 index a505f895a2..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl.java +++ /dev/null @@ -1,39 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Simple Java component implementation for business interface Service1
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl implements Service1 {
-
- @Property
- public String serviceName = "service1";
-
- public String operation1(String input) {
- return serviceName + " operation1 invoked";
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl2.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl2.java deleted file mode 100644 index 0f639fbbf3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl2.java +++ /dev/null @@ -1,46 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Enhanced Java component implementation for business interface Service1,
- * where the implementation also has a single reference using the Service1
- * interface and which gets called when operation1 is invoked
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl2 implements Service1 {
-
- @Property
- public String serviceName = "service1";
- // Reference with an implied multiplicity of (1..1) since required=true is the default
- @Reference
- public Service1 reference1 = null;
-
- public String operation1(String input) {
- String result = reference1.operation1(input);
- return serviceName + " operation1 invoked" + " " + result;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl3.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl3.java deleted file mode 100644 index 834dc3ddf7..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl3.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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Enhanced Java component implementation for business interface Service1,
- * where the implementation also has a single reference using the Service1
- * interface with mutiplicity 1..n all of which and which get called when
- * operation1 is invoked
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl3 implements Service1 {
-
- @Property
- public String serviceName = "service1";
- // Required = true + an array -> multiplicity 1..n
- @Reference(required = true)
- public Service1[] reference1 = null;
-
- public String operation1(String input) {
- String result = "";
- // Call each of the references in the array, concatenating the results
- for (int i = 0; i < reference1.length; i++) {
- result = result.concat(reference1[i].operation1(input));
- } // end for
- return serviceName + " operation1 invoked" + " " + result;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl4.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl4.java deleted file mode 100644 index 4799d777c7..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl4.java +++ /dev/null @@ -1,52 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Enhanced Java component implementation for business interface Service1,
- * where the implementation also has a single reference using the Service1
- * interface with multiplicity 0..n all of which and which get called when
- * operation1 is invoked
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl4 implements Service1 {
-
- @Property
- public String serviceName = "service1";
- // Required = false + an array -> multiplicity 0..n
- @Reference(required = false)
- public Service1[] reference1 = null;
-
- public String operation1(String input) {
- String result = serviceName + " operation1 invoked";
- // Call each of the references in the array, concatenating the results
- for (int i = 0; i < reference1.length; i++) {
- result = result.concat(" ");
- result = result.concat(reference1[i].operation1(input));
- } // end for
- return result;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl5.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl5.java deleted file mode 100644 index dd69308c95..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl5.java +++ /dev/null @@ -1,45 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Java component implementation for business interface Service1
- * - no references
- * - 3 properties
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl5 implements Service1 {
-
- @Property
- public String serviceName = "service1";
- @Property
- public String serviceData1;
- @Property
- public String serviceData2;
-
- public String operation1(String input) {
- return serviceName + " operation1 invoked" + serviceData1 + serviceData2;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl6.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl6.java deleted file mode 100644 index 1810686194..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1Impl6.java +++ /dev/null @@ -1,50 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Enhanced Java component implementation for business interface Service1,
- * where the implementation also has a single reference using the Service1
- * interface with multiplicity 0..1 which gets called when
- * operation1 is invoked, if present
- * @author MikeEdwards
- *
- */
-@Service(Service1.class)
-public class service1Impl6 implements Service1 {
-
- @Property
- public String serviceName = "service1";
- // Required = false -> multiplicity 0..1
- @Reference(required = false)
- public Service1 reference1 = null;
-
- public String operation1(String input) {
- String result = serviceName + " operation1 invoked";
- // Call the reference if present
- if (reference1 != null)
- result = result.concat(reference1.operation1(input));
- return result;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1SupersetImpl.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1SupersetImpl.java deleted file mode 100644 index f137b7f1b4..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service1SupersetImpl.java +++ /dev/null @@ -1,43 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Simple Java component implementation for business interface Service1Superset
- * @author MikeEdwards
- *
- */
-@Service(Service1Superset.class)
-public class service1SupersetImpl implements Service1Superset {
-
- @Property
- public String serviceName = "service1";
-
- public String operation1(String input) {
- return serviceName + " operation1 invoked";
- }
-
- public String operation2(String input) {
- return serviceName + " operation2 invoked";
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service2Impl.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service2Impl.java deleted file mode 100644 index 919b33014c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/java/test/service2Impl.java +++ /dev/null @@ -1,39 +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 test;
-
-import org.oasisopen.sca.annotation.Property;
-import org.oasisopen.sca.annotation.Service;
-
-/**
- * Simple Java component implementation for business interface Service2
- * @author MikeEdwards
- *
- */
-@Service(Service2.class)
-public class service2Impl implements Service2 {
-
- @Property
- public String serviceName = "service1";
-
- public int operation2(int input) {
- return input + 1;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient.wsdl b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient.wsdl deleted file mode 100644 index f9475a016a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient.wsdl +++ /dev/null @@ -1,102 +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.
--->
-<!-- Produced from the TestInvocation,java interface by running a service
- based on that interface in an SCA runtime using a Web services binding
-
- Mike Edwards, 6th January 2008
--->
-<wsdl:definitions name="TestInvocationService"
- targetNamespace="http://test/"
- xmlns:tns="http://test/"
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:SOAP11="http://schemas.xmlsoap.org/wsdl/soap/">
- <wsdl:types>
- <xs:schema targetNamespace="http://test/" version="1.0" xmlns:tns="http://test/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="TestException" type="tns:TestException"/>
- <xs:complexType name="TestException">
- <xs:sequence>
- <xs:element minOccurs="0" name="message" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
- <xs:schema attributeFormDefault="qualified" elementFormDefault="unqualified"
- targetNamespace="http://test/"
- xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="invokeTest">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" name="arg0" nillable="true" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="invokeTestResponse">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
- </wsdl:types>
- <wsdl:message name="invokeTest">
- <wsdl:part name="invokeTest" element="tns:invokeTest">
- </wsdl:part>
- </wsdl:message>
- <wsdl:message name="invokeTestResponse">
- <wsdl:part name="invokeTestResponse" element="tns:invokeTestResponse">
- </wsdl:part>
- </wsdl:message>
- <wsdl:message name="TestException">
- <wsdl:part name="TestException" element="tns:TestException">
- </wsdl:part>
- </wsdl:message>
- <wsdl:portType name="TestInvocation">
- <wsdl:operation name="invokeTest">
- <wsdl:input message="tns:invokeTest">
- </wsdl:input>
- <wsdl:output message="tns:invokeTestResponse">
- </wsdl:output>
- <wsdl:fault name="TestException" message="tns:TestException">
- </wsdl:fault>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="TestInvocationBinding" type="tns:TestInvocation">
- <SOAP:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="invokeTest">
- <SOAP:operation soapAction=""/>
- <wsdl:input>
- <SOAP:body use="literal"/>
- </wsdl:input>
- <wsdl:output>
- <SOAP:body use="literal"/>
- </wsdl:output>
- <wsdl:fault name="TestException">
- <SOAP:fault name="TestException" use="literal"/>
- </wsdl:fault>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="TestInvocationService">
- <wsdl:port name="TestInvocationPort" binding="tns:TestInvocationBinding">
- <SOAP:address location="http://localhost:8080/TestClient"/>
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0002.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0002.composite deleted file mode 100644 index cf29e199d1..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0002.composite +++ /dev/null @@ -1,47 +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. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:tns="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestClient_0002">
- - <service name="TestInvocation" promote="TestClient/TestInvocation"> - <interface.java interface="test.TestInvocation"/> - </service> - - <property name="testName" type="string"/> - - <component name="TestClient">
- <implementation.java class="test.ASM_0002_Client"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- </service>
- <reference name="reference1"> - <interface.java interface="test.Service1"/> - </reference>
- <property name="testName" source="$testName"/>
- </component> - - <reference name="reference1" promote="TestClient/reference1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0003.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0003.composite deleted file mode 100644 index 810a4e761a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestClient_0003.composite +++ /dev/null @@ -1,47 +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. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:tns="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestClient_0003">
- - <service name="TestInvocation" promote="TestClient/TestInvocation"> - <interface.java interface="test.TestInvocation"/> - </service> - - <property name="testName" type="string"/> - - <component name="TestClient">
- <implementation.java class="test.ASM_0003_Client"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- </service>
- <reference name="reference1"> - <interface.java interface="test.Service1"/> - </reference>
- <property name="testName" source="$testName"/>
- </component> - - <reference name="reference1" promote="TestClient/reference1" multiplicity="1..n"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite1.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite1.composite deleted file mode 100644 index 9221a57ba5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite1.composite +++ /dev/null @@ -1,40 +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. ---> -<!-- A simple composite which provides a single service and no references --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite1">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite10.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite10.composite deleted file mode 100644 index 51f5de625b..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite10.composite +++ /dev/null @@ -1,47 +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. ---> -<!-- An example of a composite which has a single service and - a single reference, but where the reference has a binding - applied to it, with a target service identified --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite10">
- - <service name="Service1" promote="Composite10Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite10Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - - <reference name="Reference1" promote="Composite10Component1/reference1"> - <interface.java interface="test.Service1"/> - <binding.sca uri="TestComponent2/Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite11.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite11.composite deleted file mode 100644 index 3cc3a4542b..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite11.composite +++ /dev/null @@ -1,59 +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. ---> -<!-- An example of a composite which has one component with a reference - that is multiplicity 1..1 and which is both wired to a service of a - second component in the same composite and is also promoted by a - composite reference --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite11">
- - <service name="Service1" promote="Composite11Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite11Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <!-- reference is multiplicity 1..1 --> - <reference name="reference1" target="Composite11Component2/Service1"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <component name="Composite11Component2"> - <implementation.java class="test.service1Impl"/> - <service name="Service1"> - <interface.java interface="test.Service1"/> - </service> - <property name="serviceName">Composite11-C2</property> - </component> - - <reference name="Reference1" promote="Composite11Component1/reference1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite12.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite12.composite deleted file mode 100644 index 81552d9802..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite12.composite +++ /dev/null @@ -1,45 +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. ---> -<!-- A simple composite which provides a single service and no references - plus a property with a complex type --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:test="http://oasis/tests" - name="TestComposite12">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/> - - <property name="complexType" type="test:ComplexType1"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl5"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <property name="serviceData1" source="$complexType/firstData"/> - <property name="serviceData2" source="$complexType/secondData"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite13.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite13.composite deleted file mode 100644 index 6790a83bc8..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite13.composite +++ /dev/null @@ -1,46 +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. ---> -<!-- A simple composite which provides a single service and no references - plus a property with a complex type with a type which is an XSD global - element --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:test="http://oasis/tests" - name="TestComposite13">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/> - - <property name="complexType" element="test:globalElement1"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl5"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <property name="serviceData1" source="$complexType/firstData"/> - <property name="serviceData2" source="$complexType/secondData"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite14.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite14.composite deleted file mode 100644 index 82a5f98280..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite14.composite +++ /dev/null @@ -1,45 +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. ---> -<!-- A simple composite which provides a single service and no references - plus a property with a simple type --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:test="http://oasis/tests" - name="TestComposite14">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/> - - <property name="simpleType" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl5"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <property name="serviceData1" source="$simpleType"/> - <property name="serviceData2" source="$simpleType"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite15.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite15.composite deleted file mode 100644 index 7444094622..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite15.composite +++ /dev/null @@ -1,43 +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. ---> -<!-- A simple composite which provides a single service and no references, - where the service is configured with multiple explicit bindings --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite15">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - <binding.sca/> - <binding.ws/> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite16.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite16.composite deleted file mode 100644 index 35301ce4cb..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite16.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- A composite which has multiple <service/> subelements with the same @name and no references --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite16">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <service name="Service2" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite17.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite17.composite deleted file mode 100644 index aff1c2c0e4..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite17.composite +++ /dev/null @@ -1,46 +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. ---> -<!-- A composite which has a single service with a @promote attribute - that does not reference the <service/> of a <component/> within the - <composite/> and no references --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite17">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <service name="Service2" promote="SpuriousComponent/SpuriousService"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite18.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite18.composite deleted file mode 100644 index 2ae3589b48..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite18.composite +++ /dev/null @@ -1,42 +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. ---> -<!-- A composite which has a single service with a declared <interface/> - that is a compatible subset of the interface of the component service - declared in the @promote attribute --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite18">
- - <service name="Service1" promote="TestComponent1/Service1Superset"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1SupersetImpl"/> - <service name="Service1Superset">
- <interface.java interface="test.Service1Superset"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite19.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite19.composite deleted file mode 100644 index 17a1d99b0a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite19.composite +++ /dev/null @@ -1,52 +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. ---> -<!-- A composite which has a single <service/> subelement and multiple <reference/> - subelements with the same @name value --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite19">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl4"/> - <service name="Service1"> - <interface.java interface="test.Service1"/> - </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite2.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite2.composite deleted file mode 100644 index c0770c6d81..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite2.composite +++ /dev/null @@ -1,43 +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. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite2">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service> - - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite20.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite20.composite deleted file mode 100644 index 73f1376947..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite20.composite +++ /dev/null @@ -1,58 +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. ---> -<!-- A composite which has a <composite/> <reference/> that is in error - since its @promote attribute is not the URI of a <component/> <reference/> - within the <composite/> --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite20">
- - <service name="Service1" promote="Composite20Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite20Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1"/> - </component> - - <component name="Composite20Component2"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1"> - <interface.java interface="test.Service1"/> - </service> - <property name="serviceName">Composite11-C2</property> - <reference name="reference1"/> - </component> - - <!-- @promote deliberately incorrect - component names are non-existent --> - <reference name="Reference1" - promote="Composite20Componentz/reference1 Composite20Componenty/reference1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite21.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite21.composite deleted file mode 100644 index 6cd7451a02..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite21.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- A composite which has a <composite/> <reference/> that declares an interface - which is a superset of the interface declared by the <component/> <reference/> - promoted by the composite reference --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite21">
- - <service name="Service1" promote="Composite21Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite21Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1"/> - </component> - - <!-- reference declares a superset interface --> - <reference name="Reference1" promote="Composite21Component1/reference1"> - <interface.java interface="test.Service1Superset"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite22.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite22.composite deleted file mode 100644 index 0e645f0425..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite22.composite +++ /dev/null @@ -1,61 +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. ---> -<!-- A composite which has a <composite/> <reference/> that has no interface - declared that promotes 2 <component/> <reference/>s that have different - interfaces declared on them --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite22">
- - <service name="Service1" promote="Composite22Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite22Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <component name="Composite22Component2"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1"> - <interface.java interface="test.Service1"/> - </service> - <property name="serviceName">Composite11-C2</property> - <reference name="reference1"> - <interface.java interface="test.Service1Superset"/> - </reference> - </component> - - <!-- @promote deliberately incorrect - component names are non-existent --> - <reference name="Reference1" - promote="Composite22Component1/reference1 Composite22Component2/reference1"> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite23.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite23.composite deleted file mode 100644 index 5f2a5c7193..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite23.composite +++ /dev/null @@ -1,49 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 1..1 which promotes a - component reference of multiplcity 0..1 --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite23">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl6"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="0..1"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="1..1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite24.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite24.composite deleted file mode 100644 index 758a593235..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite24.composite +++ /dev/null @@ -1,49 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 0..1 which promotes a - component reference of multiplicity 0..n --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite24">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl4"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="0..1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite25.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite25.composite deleted file mode 100644 index 6e6caed073..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite25.composite +++ /dev/null @@ -1,49 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 1..1 which promotes a - component reference of multiplicity 1..n --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite25">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl3"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="1..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="1..1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite26.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite26.composite deleted file mode 100644 index bd777dc376..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite26.composite +++ /dev/null @@ -1,53 +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. ---> -<!-- An example of a composite which has a single service and - a single reference and multiple <property/> elements all of - which have the same @name value --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite26">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/> - - <property name="propertyName" type="string"/> - <property name="propertyName" type="string"/> - <property name="propertyName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite27.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite27.composite deleted file mode 100644 index edc5bdddad..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite27.composite +++ /dev/null @@ -1,53 +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. ---> -<!-- An example of a composite which which has a <component/> with a <reference/> - element which has @autowire=true and where there is a compatible <component/> - <service/> in the same composite --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite27">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/> - - <component name="TestComponent1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" autowire="true"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <component name="TestComponent2"> - <implementation.java class="test.service1Impl"/> - <service name="Service1"> - <interface.java interface="test.Service1"/> - </service> - <property name="serviceName">third</property> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite3.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite3.composite deleted file mode 100644 index a465f45510..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite3.composite +++ /dev/null @@ -1,49 +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. ---> -<!-- An example of a composite which is invalid because it has two - composite level references with the same @name attribute --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite3">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - - <reference name="Reference1" promote="TestComponent1/Reference"> - <interface.java interface="test.Service1"/> - </reference> - - <reference name="Reference1" promote="TestComponent1/Reference"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite4.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite4.composite deleted file mode 100644 index f89546b8da..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite4.composite +++ /dev/null @@ -1,45 +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. ---> -<!-- An example of a composite which has a single service and - a single reference --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite4">
- - <service name="Service1" promote="Composite4Component1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="Composite4Component1"> - <implementation.java class="test.service1Impl2"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - - <reference name="Reference1" promote="Composite4Component1/reference1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite5.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite5.composite deleted file mode 100644 index d5f7e21dc6..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite5.composite +++ /dev/null @@ -1,41 +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. ---> -<!-- Composite offering a single service, with a modified interface - type --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite5">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service2"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service2Impl"/> - <service name="Service1">
- <interface.java interface="test.Service2"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite6.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite6.composite deleted file mode 100644 index 7f5a588e31..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite6.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 1..n --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite6">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl3"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="1..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="1..n"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite7.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite7.composite deleted file mode 100644 index ea432f9145..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite7.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 0..n --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite7">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl4"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite8.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite8.composite deleted file mode 100644 index ef5d75af39..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite8.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- An example of a composite which has a single service and - a single reference with multiplicity 0..1 --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite8">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"/> - </service> - - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl4"/> - <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service> - <property name="serviceName" source="$serviceName"/> - <reference name="reference1" multiplicity="0..n"> - <interface.java interface="test.Service1"/> - </reference> - </component> - - <reference name="Reference1" promote="TestComponent1/reference1" multiplicity="0..1"> - <interface.java interface="test.Service1"/> - </reference> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite9.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite9.composite deleted file mode 100644 index a71d0d4e0b..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestComposite9.composite +++ /dev/null @@ -1,41 +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. ---> -<!-- Composite that provides a single service with the extended - Service1Superset interface --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TestComposite9">
- - <service name="Service1" promote="Composite9Component1/Service1Superset"> - <interface.java interface="test.Service1Superset"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="Composite9Component1"> - <implementation.java class="test.service1SupersetImpl"/> - <service name="Service1Superset">
- <interface.java interface="test.Service1Superset"></interface.java>
- </service> - <property name="serviceName" source="$serviceName"/> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate1.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate1.composite deleted file mode 100644 index 193ab924bc..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate1.composite +++ /dev/null @@ -1,41 +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. ---> -<!-- 1st of a pair of composite files where the composites have duplicated - names and targetNamespaces --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="DuplicateComposite">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName">duplicate1</property> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate2.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate2.composite deleted file mode 100644 index 3445d07a85..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/TestDuplicate2.composite +++ /dev/null @@ -1,41 +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. ---> -<!-- 2nd of a pair of composite files where the composites have duplicated - names and targetNamespaces --> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="DuplicateComposite">
- - <service name="Service1" promote="TestComponent1/Service1"> - <interface.java interface="test.Service1"></interface.java> - </service>
- - <property name="serviceName" type="string"/>
- - <component name="TestComponent1"> - <implementation.java class="test.service1Impl"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName">duplicate2</property> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0001.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0001.composite deleted file mode 100644 index ae5885596e..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0001.composite +++ /dev/null @@ -1,33 +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.
--->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0001">
-
- <component name="TestClient">
- <implementation.java class="test.ASM_0001_Client"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.sca/>
- </service>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0002.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0002.composite deleted file mode 100644 index 0d50dc4f4c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0002.composite +++ /dev/null @@ -1,48 +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. ---> -<!-- - ASM_0002_TestCase tests that component with a single reference can be wired to a single - component service in the same composite. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:tns="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TEST_ASM_0002">
- - <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/> - <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0002</property>
- </component>
- - <component name="TestComponent1"> - <implementation.composite name="tns:TestComposite1"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service> - <property name="serviceName">service1</property> - </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0003.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0003.composite deleted file mode 100644 index cfce6d0d48..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0003.composite +++ /dev/null @@ -1,64 +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. ---> -<!-- Test case that verifies that an implementation with a reference with multiplicity 1..n can - be validly wired to 3 target services and invoke them all correctly. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:tns="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TEST_ASM_0003">
- - <component name="TestClient">
- <implementation.composite name="tns:TestClient_0003"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/> - <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1 TestComponent2/Service1 TestComponent3/Service1" />
- <property name="testName">ASM_0003</property>
- </component>
-
- - <component name="TestComponent1"> - <implementation.composite name="tns:TestComposite1"/> - <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service1</property> - </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component> - -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0004.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0004.composite deleted file mode 100644 index ca75c33a71..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0004.composite +++ /dev/null @@ -1,62 +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.
--->
-<!-- Test that verifies that a reference with multiplicity 1..1 which is provided
- with multiple wire targets in the component configuration is marked as an error -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0004">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1 TestComponent2/Service1 TestComponent3/Service1" />
- <property name="testName">ASM_0004</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0005.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0005.composite deleted file mode 100644 index aa9b8af911..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0005.composite +++ /dev/null @@ -1,49 +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.
--->
-<!-- Test that a component with multiple <service/> elements must have unique @name attributes for each
- service - negative test that has a component with 2 services with the same name -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0005">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0005</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite2"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0006.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0006.composite deleted file mode 100644 index 3212c595b3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0006.composite +++ /dev/null @@ -1,47 +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.
--->
-<!-- Test checks that the @name attribute of a <service/>
- element of a <component/> matches the @name attribute of a <service/> element of the
- componentType of the <implementation/> used by the <component/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0006">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/InvalidName" />
- <property name="testName">ASM_0005</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="InvalidName">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0007.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0007.composite deleted file mode 100644 index 1f63746464..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0007.composite +++ /dev/null @@ -1,60 +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.
--->
-<!-- Test that the @name attribute of a <reference/> element of a
- component is not equal to the @name attribute of any other
- <reference/> element of the same component -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0007">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0005</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite3"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Two references with the same name - the implementation also has
- two references of the same name so that the component type
- matches the configuration of the component -->
- <reference name="Reference1" target="TestComponent2/Service1"/>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0008.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0008.composite deleted file mode 100644 index 4b078ca7a3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0008.composite +++ /dev/null @@ -1,61 +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.
--->
-<!-- Tests that the @name attribute of a <reference/> element of a
- component is equal to the @name attribute of a <reference/>
- element of the <componentType/> of the <implementation/> of
- the <component/> - negative test in that here there is a
- reference @name which does NOT match a reference name in the
- component type -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0008">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0005</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- This reference has a name that does not match the name of a
- Reference in the implementation -->
- <reference name="InvalidName" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0009.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0009.composite deleted file mode 100644 index 62ba494dcd..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0009.composite +++ /dev/null @@ -1,63 +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.
--->
-<!-- Tests that the @name attribute of a <component/> element
- in a <composite/> is not the same as the @name
- attribute of a second component in the same <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0009">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0009</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0010.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0010.composite deleted file mode 100644 index 4454a75278..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0010.composite +++ /dev/null @@ -1,51 +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.
--->
-<!-- Tests interface specified by the <interface/> child element of a
- <service/> element is a compatible subset of the interface declared
- for the <service/> element with the same @name attribute in the
- <componentType/> of the <implementation/> of the <component/>
- parent of the <service/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0010">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0010</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite5"/>
- <!-- This service declares interface Service1 while the implementation offers
- Service2, which is not compatible with Service1 -->
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0011.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0011.composite deleted file mode 100644 index 447cbcc83d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0011.composite +++ /dev/null @@ -1,61 +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.
--->
-<!-- Tests the multiplicity of a <reference/> element of a <component/>
- can be 1..1 where the multiplicity of the equivalent <reference/>
- element in the <componentType/> of the <implementation/> of the
- <component/> is 1..n -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0011">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0011</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite6"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- The multiplicity declared for this reference is 1..1 while the multiplicity of
- the corresponding reference on the componentType of the implementation is 1..n -->
- <reference name="Reference1" target="TestComponent2/Service1" multiplicity="1..1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0012.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0012.composite deleted file mode 100644 index c48b5ca601..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0012.composite +++ /dev/null @@ -1,101 +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.
--->
-<!-- Tests that the the multiplicity
- of a <reference/> element of a <component/> can be any one of 0..1,
- 1..1, 0..n, 1..n where the multiplicity of the equivalent <reference/>
- element in the <componentType/> of the <implementation/> of the
- <component/> is 0..n -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0012">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0012</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- The multiplicity declared for this reference is 0..1 while the multiplicity of
- the corresponding reference on the componentType of the implementation is 0..n -->
- <reference name="Reference1" target="TestComponent2/Service1" multiplicity="0..1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- <!-- The multiplicity declared for this reference is 1..1 while the multiplicity of
- the corresponding reference on the componentType of the implementation is 0..n -->
- <reference name="Reference1" target="TestComponent3/Service1" multiplicity="1..1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service3</property>
- <!-- The multiplicity declared for this reference is 0..n while the multiplicity of
- the corresponding reference on the componentType of the implementation is 0..n -->
- <reference name="Reference1" target="TestComponent4/Service1" multiplicity="0..n">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent4">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service4</property>
- <!-- The multiplicity declared for this reference is 1..n while the multiplicity of
- the corresponding reference on the componentType of the implementation is 0..n -->
- <reference name="Reference1" target="TestComponent5/Service1" multiplicity="1..n">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent5">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service5</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0013.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0013.composite deleted file mode 100644 index 91cca790ad..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0013.composite +++ /dev/null @@ -1,62 +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.
--->
-<!-- Tests that the the multiplicity
- of a <reference/> element of a <component/> is
- 1..1 where the multiplicity of the equivalent <reference/>
- element in the <componentType/> of the <implementation/> of the
- <component/> is 1..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0013">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0013</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- The multiplicity declared for this reference is 1..1 while the multiplicity of
- the corresponding reference on the componentType of the implementation is 1..1 -->
- <reference name="Reference1" target="TestComponent2/Service1" multiplicity="1..1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0014.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0014.composite deleted file mode 100644 index 698f7896a3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0014.composite +++ /dev/null @@ -1,61 +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.
--->
-<!-- Tests that the multiplicity of a <reference/> element of a
- <component/> is 0..n where the multiplicity of the equivalent
- <reference/> element in the <componentType/> of the
- <implementation/> of the <component/> is 1..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0014">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0014</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- The multiplicity declared for this reference is 0..n while the multiplicity of
- the corresponding reference on the componentType of the implementation is 1..1 -->
- <reference name="Reference1" target="TestComponent2/Service1" multiplicity="0..n">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0015.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0015.composite deleted file mode 100644 index 01c1d1d450..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0015.composite +++ /dev/null @@ -1,62 +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.
--->
-<!-- Tests that the the multiplicity
- of a <reference/> element of a <component/> is
- 1..1 where the multiplicity of the equivalent <reference/>
- element in the <componentType/> of the <implementation/> of the
- <component/> is 0..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0015">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0015</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite8"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- The multiplicity declared for this reference is 1..1 while the multiplicity of
- the corresponding reference on the componentType of the implementation is 0..1 -->
- <reference name="Reference1" target="TestComponent2/Service1" multiplicity="1..1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0016.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0016.composite deleted file mode 100644 index 98e2ffa41a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0016.composite +++ /dev/null @@ -1,61 +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.
--->
-<!-- Tests that the interface declared by the <interface/> child element
- of a <reference/> of a <component/> is a compatible superset of the
- interface declared on the corresponding <reference/> of the
- componentType of the <implementation/> of the <component/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0016">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0016</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1">
- <!-- Component type has the interface = test.Service1 - here
- we use an interface that is a superset -->
- <interface.java interface="test.Service1Superset"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite9"/>
- <service name="Service1">
- <interface.java interface="test.Service1Superset"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0017.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0017.composite deleted file mode 100644 index d2c065ffd1..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0017.composite +++ /dev/null @@ -1,61 +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.
--->
-<!-- Tests that where a <reference/> of a <component/> has no <binding/>
- child element, but the corresponding <reference/> element in the
- componentType does have a binding child element, the <binding/>
- from the componentType is used for the reference -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0017">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0017</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite10"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- ComponentType has a binding for this reference that
- identifies the target for this reference -->
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0018.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0018.composite deleted file mode 100644 index 4684bd5afe..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0018.composite +++ /dev/null @@ -1,72 +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.
--->
-<!-- Tests that where a <reference/> of a <component/> has a <binding/>
- child element and the corresponding <reference/> element in the
- componentType has a binding child element, the <binding/>
- from the <reference/> is used for the reference -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0018">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0018</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite10"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- ComponentType has a binding for this reference that
- identifies a target for this reference -->
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- <binding.sca uri="TestComponent3/Service1"/>
- </reference>
- </component>
-
- <!-- This component is the target identified by the Component Type -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <!-- This component is the target identified by the reference -->
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0019.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0019.composite deleted file mode 100644 index 106ed5e5bd..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0019.composite +++ /dev/null @@ -1,69 +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.
--->
-<!-- Tests that where a <reference/> of a <component/> has autowire=true
- and also has target identifying a single target service that the
- reference is wired only to the single service identified by the
- target attribute -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0019">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0019</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" autowire="true" target="TestComponent3/Service1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <!-- This component is the target identified by the Component Type -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <!-- This component is the target identified by the reference -->
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0020.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0020.composite deleted file mode 100644 index 70b5a7b3c1..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0020.composite +++ /dev/null @@ -1,71 +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.
--->
-<!-- Tests that where a <reference/> of a <component/> has
- @autowire=true and where there is also a single <wire/> element
- which as that <reference/> as its source that the reference is
- wired only to the single service identified by the <wire/> element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0020">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0020</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" autowire="true">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <wire source="TestComponent1/Reference1" target="TestComponent3/Service1"/>
-
- <!-- This component is the target identified by the Component Type -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <!-- This component is the target identified by the reference -->
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0021.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0021.composite deleted file mode 100644 index e40949b012..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0021.composite +++ /dev/null @@ -1,70 +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.
--->
-<!-- Tests that where a <reference/> of a <component/> has @autowire=true
- and where the <reference/> has a <binding/> child element which
- declares a single target service, the reference is wired only to
- the single service identified by the <wire/> element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0021">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0021</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite7"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" autowire="true">
- <interface.java interface="test.Service1"/>
- <binding.sca uri="TestComponent3/Service1"/>
- </reference>
- </component>
-
- <!-- This component is the target identified by the Component Type -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <!-- This component is the target identified by the reference -->
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0022.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0022.composite deleted file mode 100644 index 1bd3b43b2c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0022.composite +++ /dev/null @@ -1,50 +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.
--->
-<!-- Tests that where a <component/> <reference/> with multiplicity=0..1
- is unwired (by any means) that the component executes correctly -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0022">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0022</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite8"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Reference is 0..1 and is deliberately left unwired -->
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0023.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0023.composite deleted file mode 100644 index a3a6465c09..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0023.composite +++ /dev/null @@ -1,60 +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.
--->
-<!-- Tests that where a <component/> <reference/> with multiplicity=1..1
- is wired to a component service in the same composite and is also
- promoted by a <composite/> <reference/> which is wired to a target
- service by a component using the <composite/> as its implementation,
- that this is an error -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0023">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0023</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite11"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1">
- <interface.java interface="test.Service1"/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"></interface.java>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0024.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0024.composite deleted file mode 100644 index a140e3bfd5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0024.composite +++ /dev/null @@ -1,60 +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.
--->
-<!-- Tests that where a <component/> <reference/> has @target set to
- some service, that the reference can have no child <binding/> elements -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:sample="http://oasis/tests"
- name="TEST_ASM_0024">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0024</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1">
- <interface.java interface="test.Service1"/>
- <!-- A binding which contradicts the @target attribute -->
- <binding.ws/>
- </reference>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- <binding.ws/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0025.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0025.composite deleted file mode 100644 index 3209916612..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0025.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that where a <component/> <property/> has its value set by means
- of a child <value/> element, that the type of the <value/> element matches
- the type declared for the <property/> element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0025">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0025</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite12"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Property with complex type with a value declared using a <value/> subelement -->
- <property name="complexType" type="test:ComplexType1">
- <value>
- <firstData>complex1</firstData>
- <secondData>complex2</secondData>
- </value>
- </property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0026.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0026.composite deleted file mode 100644 index 45e7420646..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0026.composite +++ /dev/null @@ -1,57 +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.
--->
-<!-- Tests that where a <component/> <property/> has its value set by means
- of a child element that is NOT a <value/> element, that a) the type of
- the <property/> element is declared as an XML Schema global element by
- its @element attribute and that the child element is an instance of that
- global element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0026">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0026</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite13"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Property with complex type with a value declared using a subelement
- with the correct XSD global element type -->
- <property name="complexType" element="test:globalElement1">
- <test:globalElement1>
- <firstData>complex1</firstData>
- <secondData>complex2</secondData>
- </test:globalElement1>
- </property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0027.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0027.composite deleted file mode 100644 index aa411a1955..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0027.composite +++ /dev/null @@ -1,49 +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.
--->
-<!-- Tests that where a <component/> has 2 or more <property/> child elements
- that each <property/> element has a unique @name attribute value -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0027">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0027</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Multiple properties with the same @name attribute value - an error -->
- <property name="serviceName">service2</property>
- <property name="serviceName">service3</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0028.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0028.composite deleted file mode 100644 index 07d36a29fd..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0028.composite +++ /dev/null @@ -1,51 +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.
--->
-<!-- Tests that a <component/> <property/> @name attribute matches the
- @name attribute of one of the <property/> elements of the
- <componentType/> of the <implementation/> of the <component/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0028">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0028</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Property with @name attribute that does not match the @name
- attribute of any of the <property/> elements in the
- <componentType/> of the <implementation/> -->
- <property name="randomName">randomValue</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0029.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0029.composite deleted file mode 100644 index c35c2a4dca..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0029.composite +++ /dev/null @@ -1,58 +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.
--->
-<!-- Tests that that where a <component/> <property/> has @many=false that
- there is only one <value/> child element of the <property/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0029">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0029</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite12"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Property with complex type with many=false but 2 <value/>
- subelements - which is an error -->
- <property name="complexType" type="test:ComplexType1">
- <value>
- <test:firstData>SomeData</test:firstData>
- <test:secondData>MoreData</test:secondData>
- </value>
- <value>
- <test:firstData>SomeData2</test:firstData>
- <test:secondData>MoreData2</test:secondData>
- </value>
- </property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0030.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0030.composite deleted file mode 100644 index 27a652958d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0030.composite +++ /dev/null @@ -1,51 +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.
--->
-<!-- Tests that a <component/> <property/> with a @value attribute set
-does not have any <value/> child elements -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0030">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0030</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite14"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <!-- Property with value set via a @value attribute and also having
- <value/> child elements, which is an error -->
- <property name="simpleType" value="someValue">
- <value>someOtherValue</value>
- </property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0031.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0031.composite deleted file mode 100644 index d68fcac87d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0031.composite +++ /dev/null @@ -1,68 +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.
--->
-<!-- Tests that where a <component/> <reference/> has its @target attribute set
- to a valid service and the <composite/> also contains a <wire/> element with
- @source set to the <component/> <reference/> and @target set to a second valid
- service and has @replace=true, the <reference/> is wired to the second service
- only -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0031">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0031</property>
- </component>
-
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite4"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <!-- Here is a wire that overrides the reference target of TestComponent1/Reference1 -->
- <wire source="TestComponent1/Reference1" target="TestComponent3/Service1" replace="true"/>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
- <component name="TestComponent3">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service3</property>
- </component>
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0032.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0032.composite deleted file mode 100644 index 06cce10ffe..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0032.composite +++ /dev/null @@ -1,66 +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.
--->
-<!-- Tests that where a <component/> <service/> has no <binding/> subelements
- and the corresponding <service/> element of the <componentType/> of the
- <component/> <implementation/> has one or more <binding/> subelements,
- the <component/> <service/> is made available with all the bindings
- declared on the <service/> element of the <componentType/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0032">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0032</property>
- </component>
-
- <!-- Implementation with a single reference with multiplicity 1..n which
- has multiple concrete bindings applied to it -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite6"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- <binding.sca uri="TestComponent2/Service1"/>
- <binding.ws uri="http://localhost:8080/TestComponent2"/>
- </reference>
- </component>
-
- <!-- A component with a service that has no bindings but where the service in the
- componentType has multiple bindings explicitly set on it -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite15"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0033.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0033.composite deleted file mode 100644 index 070b23d1ec..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0033.composite +++ /dev/null @@ -1,65 +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.
--->
-<!-- Tests that where a <component/> <service/> has no <binding/> subelements
- and the corresponding <service/> element of the <componentType/> of the
- <component/> <implementation/> has no <binding/> subelements, the
- <component/> <service/> is made available with binding.sca -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0033">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0033</property>
- </component>
-
- <!-- Implementation with a single reference with multiplicity 1..n which
- has multiple concrete bindings applied to it -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite6"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- <binding.sca uri="TestComponent2/Service1"/>
- <binding.sca uri="TestComponent2/Service1"/>
- </reference>
- </component>
-
- <!-- A component with a service that has no bindings set and where the service
- in the componentType has no bindings explicitly set on it -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0034.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0034.composite deleted file mode 100644 index 37e282b5d5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0034.composite +++ /dev/null @@ -1,65 +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.
--->
-<!-- Tests that where a <component/> <service/> has 1 or more <binding/>
- subelements the <component/> <service/> is made available with
- all the bindings declared on the <service/> element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_0034">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_0034</property>
- </component>
-
- <!-- Implementation with a single reference with multiplicity 1..n which
- has multiple concrete bindings applied to it -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite6"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- <reference name="Reference1">
- <interface.java interface="test.Service1"/>
- <binding.sca uri="TestComponent2/Service1"/>
- <binding.ws uri="http://localhost:8080/TestComponent2"/>
- </reference>
- </component>
-
- <!-- A component with a service that has multiple bindings explicitly set on it -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- <binding.sca/>
- <binding.ws/>
- </service>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0101.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0101.composite deleted file mode 100644 index 9a5e53e75c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_0101.composite +++ /dev/null @@ -1,42 +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. ---> -<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903" - targetNamespace="http://oasis/tests" - xmlns:sample="http://oasis/tests" - name="TEST_ASM_0101">
- - <component name="TestClient">
- <implementation.java class="test.ASM_0001_Client"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.sca/>
- <binding.ws/>
- </service>
- <!-- reference name="testRef1" target="TestComponent1/service1" / -->
- </component>
-
-<!-- - <component name="TestComponent1"> - <implementation.java class="test.ASM_0001_Impl1"/> - <service name="service1"/> - </component> --->
- -</composite> diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6001.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6001.composite deleted file mode 100644 index cd4701ff57..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6001.composite +++ /dev/null @@ -1,49 +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.
--->
-<!-- Tests that where a <component/> <service/> has 1 or more <binding/>
- subelements the <component/> <service/> is made available with
- all the bindings declared on the <service/> element -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6001">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6001</property>
- </component>
-
- <!-- Component which uses a composite as its implementation where the contribution
- contains 2 <composite/> artifacts which have identical names and targetNamspaces -->
- <component name="TestComponent1">
- <implementation.composite name="tns:DuplicateComposite"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6002.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6002.composite deleted file mode 100644 index e5d59e186a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6002.composite +++ /dev/null @@ -1,45 +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.
--->
-<!-- Tests that where a <composite/> has multiple <service/> subelements
- that the @name attributes are unique across those subelements -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6002">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6002</property>
- </component>
-
- <!-- Component which uses a composite which has 2 <service/> subelements with
- the same @name attribute -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite16"/>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6003.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6003.composite deleted file mode 100644 index c65c8634f8..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6003.composite +++ /dev/null @@ -1,50 +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.
--->
-<!-- Tests that where a <composite/> has a <service/> subelement that the
- @promote attribute identifies a <service/> of a <component/> in the
- <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6003">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6003</property>
- </component>
-
- <!-- Component which uses a composite which has a <service/> subelements with
- a @promote attribute which does not contain the name of a <service/> of
- one of the <component/> within the <composite/> -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite17"/>
- <service name="Service1">
- <interface.java interface="test.Service1"/>
- </service>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6004.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6004.composite deleted file mode 100644 index 779358b5d3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6004.composite +++ /dev/null @@ -1,47 +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.
--->
-<!-- Tests that the <interface/> declared on a <service/> subelement of a
- <composite/> is a compatible subset of the <interface/> declared on
- the <component/> <service/> reference by the @promote attribute -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6004">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6004</property>
- </component>
-
- <!-- Component which uses a composite which has a <service/> subelement which
- has an <interface/> declared which is a compatible subset of the interface
- of the promoted component service -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite18"/>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6005.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6005.composite deleted file mode 100644 index ea27808b17..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6005.composite +++ /dev/null @@ -1,48 +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.
--->
-<!-- Tests that the @name attribute of a <composite/> <reference/> element
-is unique amongst the @name attributes of all the <reference/> elements of
-that <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6005">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6005</property>
- </component>
-
- <!-- Component which uses a composite which has a single <service/> subelement
- and which has 2 <reference/> subelements with the same name - references
- are 0..n multiplicity and so do not require wiring -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite19"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6006.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6006.composite deleted file mode 100644 index 04647af815..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6006.composite +++ /dev/null @@ -1,55 +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.
--->
-<!-- Tests that the @promote attribute of a <composite/> <reference/> contains
- one or more URIs that each point to a <reference/> of a <component/> in the
- <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6006">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6006</property>
- </component>
-
- <!-- Component which uses a composite which has a single <service/> subelement
- and which has 2 <reference/> subelements with the same name - references
- are 0..n multiplicity and so do not require wiring -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite20"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6007.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6007.composite deleted file mode 100644 index ed7f358e8d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6007.composite +++ /dev/null @@ -1,55 +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.
--->
-<!-- Tests that a <composite/> <reference/> can declare an <interface/>
- that is a compatible superset of the <interface/> declared by each
- <component/> <reference/> promoted by the composite reference -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6007">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6007</property>
- </component>
-
- <!-- Component which uses a composite which has a <reference/> element which
- declares a superset interface -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite21"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <!-- Implementation of the superset service -->
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite9"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6008.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6008.composite deleted file mode 100644 index 6f69735871..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6008.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that where a <composite/> <reference/> has no <interface/> subelement,
- and that <reference/> promotes 2 or more <component/> <reference/>s, that the
- <interface/> declared on each of the <component/> <reference/>s are the same -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6008">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6008</property>
- </component>
-
- <!-- Component which uses a composite which has a <reference/> element which
- promotes multiple component references which use different interfaces -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite22"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6009.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6009.composite deleted file mode 100644 index fd1cadd870..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6009.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that a <component/> <reference/> with @multiplicity=0..1 can be
- promoted by a <composite/> <reference/> with @multiplicity=1..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6009">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6009</property>
- </component>
-
- <!-- Component which uses a composite which has a <reference/> element which
- has @multiplicity=1..1 and which promotes a component reference which has
- @multiplicity=0..1 -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite23"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6010.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6010.composite deleted file mode 100644 index f9525f171e..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6010.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that a <component/> <reference/> with @multiplicity=0..n can be
- promoted by a <composite/> <reference/> with @multiplicity=0..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6010">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6010</property>
- </component>
-
- <!-- Component which uses a composite which has a <reference/> element which
- has @multiplicity=0..1 and which promotes a component reference which has
- @multiplicity=0..n -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite24"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6011.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6011.composite deleted file mode 100644 index a702d7b342..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6011.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that a <component/> <reference/> with @multiplicity=1..n can be
- promoted by a <composite/> <reference/> with @multiplicity=1..1 -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6011">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6011</property>
- </component>
-
- <!-- Component which uses a composite which has a <reference/> element which
- has @multiplicity=1..1 and which promotes a component reference which has
- @multiplicity=1..n -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite25"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6012.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6012.composite deleted file mode 100644 index f032838b50..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6012.composite +++ /dev/null @@ -1,54 +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.
--->
-<!-- Tests that the @name attribute of a <property/> element of a <composite/> is
- unique amongst the @name attribute values of all the <property/> elements of
- that <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6012">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6012</property>
- </component>
-
- <!-- Component which uses a composite which has multiple <property/>
- elements and where they all have the same @name value -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite26"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- <reference name="Reference1" target="TestComponent2/Service1"/>
- </component>
-
- <component name="TestComponent2">
- <implementation.composite name="tns:TestComposite1"/>
- <service name="Service1"/>
- <property name="serviceName">service2</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6013.composite b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6013.composite deleted file mode 100644 index 1e3dd250d5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_ASM_6013.composite +++ /dev/null @@ -1,47 +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.
--->
-<!-- Tests that a <component/> <reference/> with @autowire=true is wired
- to a compatible <component/> <service/> in the same <composite/> -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- targetNamespace="http://oasis/tests"
- xmlns:tns="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- name="TEST_ASM_6013">
-
- <component name="TestClient">
- <implementation.composite name="tns:TestClient_0002"/>
- <service name="TestInvocation">
- <interface.java interface="test.TestInvocation"/>
- <binding.ws/>
- </service>
- <reference name="reference1" target="TestComponent1/Service1" />
- <property name="testName">ASM_6013</property>
- </component>
-
- <!-- Component which uses a composite which has a <component/> with a <reference/>
- element which has @autowire=true and where there is a compatible <component/>
- <service/> in the same composite -->
- <component name="TestComponent1">
- <implementation.composite name="tns:TestComposite27"/>
- <service name="Service1"/>
- <property name="serviceName">service1</property>
- </component>
-
-</composite>
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_Types.xsd b/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_Types.xsd deleted file mode 100644 index 98c57b1a55..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/main/resources/Test_Types.xsd +++ /dev/null @@ -1,38 +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.
--->
-<!-- Schema for Schema types used by the SCA TestCases -->
-<schema xmlns="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://oasis/tests"
- xmlns:test="http://oasis/tests"
- xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200903"
- elementFormDefault="qualified">
-
- <!-- A complex type -->
- <complexType name="ComplexType1">
- <sequence>
- <element name="firstData" type="string" />
- <element name="secondData" type="string" />
- </sequence>
- </complexType>
-
- <!-- A global element with a complex type -->
- <element name="globalElement1" type="test:ComplexType1"/>
-
-</schema>
\ No newline at end of file diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0002_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0002_TestCase.java deleted file mode 100644 index 531a5a817b..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0002_TestCase.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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * ASM_0002_TestCase
- */
-public class ASM_0002_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0002";
- config.input = "request";
- config.output = config.testName + " " + config.input + " service1 operation1 invoked";
- config.composite = "Test_ASM_0002.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0002
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0003_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0003_TestCase.java deleted file mode 100644 index 2f60ad5fca..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0003_TestCase.java +++ /dev/null @@ -1,46 +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 client;
-
-import test.ASM_0003_Client;
-import testClient.TestInvocation;
-
-/**
- * A generic test client based on Tuscany APIs
- */
-public class ASM_0003_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0003";
- config.input = "request";
- config.output =
- config.testName + " "
- + config.input
- + " service1 operation1 invoked"
- + "service2 operation1 invoked"
- + "service3 operation1 invoked";
- config.composite = "Test_ASM_0003.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0003_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0004_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0004_TestCase.java deleted file mode 100644 index 6991447961..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0004_TestCase.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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * A generic test client based on Tuscany APIs
- */
-public class ASM_0004_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0004";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0004.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0005_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0005_TestCase.java deleted file mode 100644 index a27c1cc08e..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0005_TestCase.java +++ /dev/null @@ -1,42 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0005_TestCase, which checks that a component with multiple <service/>
- * elements with the same @name attribute is an error
- */
-public class ASM_0005_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0005";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0005.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0006_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0006_TestCase.java deleted file mode 100644 index 36e1e53d6e..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0006_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0006_TestCase, which checks that the @name attribute of a <service/>
- * element of a <component/> matches the @name attribute of a <service/> element of the
- * componentType of the <implementation/> used by the <component/>
- */
-public class ASM_0006_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0006";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0006.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0007_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0007_TestCase.java deleted file mode 100644 index b5528b35b3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0007_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0007_TestCase, which tests that the @name attribute of a <reference/>
- * element of a component is not equal to the @name attribute of any other <reference/>
- * element of the same component
- */
-public class ASM_0007_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0007";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0007.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0008_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0008_TestCase.java deleted file mode 100644 index 0c6c9201c9..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0008_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0008_TestCase, which Tests that the @name attribute of a
- * <reference/> element of a component is equal to the @name attribute of a
- * <reference/> element of the <componentType/> of the <implementation/> of
- * the <component/>
- */
-public class ASM_0008_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0008";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0008.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0009_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0009_TestCase.java deleted file mode 100644 index 415e23a6b2..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0009_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0009_TestCase, which tests that the @name attribute of a
- * <component/> element in a <composite/> is not the same as the @name
- * attribute of a second component in the same <composite/>
- */
-public class ASM_0009_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0009";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0009.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0010_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0010_TestCase.java deleted file mode 100644 index f74589ff1a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0010_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0009_TestCase, which tests that the interface specified
- * by the <interface/> child element of a <service/> element is a compatible
- * subset of the interface declared for the <service/> element with the
- * same @name attribute in the <componentType/> of the <implementation/>
- * of the <component/> parent of the <service/>
- */
-public class ASM_0010_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0010";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0010.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0011_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0011_TestCase.java deleted file mode 100644 index 309c2a7ae6..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0011_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0011_TestCase, which tests that the the multiplicity
- * of a <reference/> element of a <component/> can be 1..1 where the
- * multiplicity of the equivalent <reference/> element in the
- * <componentType/> of the <implementation/> of the <component/> is 1..n
- */
-public class ASM_0011_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0011";
- config.input = "request";
- config.output = "ASM_0011 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_0011.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0012_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0012_TestCase.java deleted file mode 100644 index d5c166134d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0012_TestCase.java +++ /dev/null @@ -1,46 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0012_TestCase, which tests that the the multiplicity
- * of a <reference/> element of a <component/> can be any one of 0..1,
- * 1..1, 0..n, 1..n where the multiplicity of the equivalent <reference/>
- * element in the <componentType/> of the <implementation/> of the
- * <component/> is 0..n
- */
-public class ASM_0012_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0012";
- config.input = "request";
- config.output =
- "ASM_0012 request service1 operation1 invoked service2 operation1 invoked" + " service3 operation1 invoked service4 operation1 invoked service5 operation1 invoked";
- config.composite = "Test_ASM_0012.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0013_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0013_TestCase.java deleted file mode 100644 index 11ec31907a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0013_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0013_TestCase, which tests that the the multiplicity
- * of a <reference/> element of a <component/> is 1..1 where the
- * multiplicity of the equivalent <reference/> element in the
- * <componentType/> of the <implementation/> of the <component/> is 1..1
- */
-public class ASM_0013_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0013";
- config.input = "request";
- config.output = "ASM_0013 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_0013.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0014_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0014_TestCase.java deleted file mode 100644 index 35b8383c91..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0014_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0014_TestCase, which tests that the multiplicity of a
- * <reference/> element of a <component/> is 0..n where the multiplicity
- * of the equivalent <reference/> element in the <componentType/> of the
- * <implementation/> of the <component/> is 1..1
- */
-public class ASM_0014_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0014";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0014.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0015_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0015_TestCase.java deleted file mode 100644 index e0c64e8851..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0015_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0015_TestCase, which tests that the the multiplicity
- * of a <reference/> element of a <component/> is 1..1 where the
- * multiplicity of the equivalent <reference/> element in the
- * <componentType/> of the <implementation/> of the <component/> is 0..1
- */
-public class ASM_0015_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0015";
- config.input = "request";
- config.output = "ASM_0015 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_0015.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0016_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0016_TestCase.java deleted file mode 100644 index 9ad6bb27c7..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0016_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0016_TestCase, which tests that the interface declared
- * by the <interface/> child element of a <reference/> of a <component/>
- * is a compatible superset of the interface declared on the corresponding
- * <reference/> of the componentType of the <implementation/> of the <component/>
- */
-public class ASM_0016_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0016";
- config.input = "request";
- config.output = "ASM_0016 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_0016.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0017_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0017_TestCase.java deleted file mode 100644 index d1638fd809..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0017_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0017_TestCase, which tests that where a <reference/>
- * of a <component/> has no <binding/> child element, but the
- * corresponding <reference/> element in the componentType does have
- * a binding child element, the <binding/> from the componentType is
- * used for the reference
- */
-public class ASM_0017_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0017";
- config.input = "request";
- config.output = "ASM_0017 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_0017.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0018_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0018_TestCase.java deleted file mode 100644 index db49cee512..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0018_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0018_TestCase, which tests that where a <reference/>
- * of a <component/> has a <binding/> child element and the
- * corresponding <reference/> element in the componentType has
- * a binding child element, the <binding/> from the <reference/> is
- * used for the reference
- */
-public class ASM_0018_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0018";
- config.input = "request";
- config.output = "ASM_0018 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0018.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0019_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0019_TestCase.java deleted file mode 100644 index f4189fcaf5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0019_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0018_TestCase, which tests that where a <reference/>
- * of a <component/> has @autowire=”true” and also has @target identifying
- * a single target service that the reference is wired only to the single
- * service identified by the @target attribute
- */
-public class ASM_0019_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0019";
- config.input = "request";
- config.output = "ASM_0019 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0019.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0020_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0020_TestCase.java deleted file mode 100644 index 50fec1f0a9..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0020_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0020_TestCase, which tests that where a <reference/>
- * of a <component/> has @autowire=true and where there is also a single
- * <wire/> element which as that <reference/> as its source that the
- * reference is wired only to the single service identified by the
- * <wire/> element
- */
-public class ASM_0020_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0020";
- config.input = "request";
- config.output = "ASM_0020 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0020.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java deleted file mode 100644 index 286533a9ee..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0021_TestCase, which tests that where a <reference/>
- * of a <component/> has @autowire=true and where the <reference/> has
- * a <binding/> child element which declares a single target service,
- * the reference is wired only to the single service identified by the
- * <wire/> element
- */
-public class ASM_0021_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0021";
- config.input = "request";
- config.output = "ASM_0021 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0021.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0022_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0022_TestCase.java deleted file mode 100644 index 6b64407545..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0022_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0022_TestCase, which tests that where a <component/>
- * <reference/> with multiplicity=0..1 is unwired (by any means) that
- * the component executes correctly
- */
-public class ASM_0022_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0022";
- config.input = "request";
- config.output = "ASM_0022 request service1 operation1 invoked";
- config.composite = "Test_ASM_0022.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0023_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0023_TestCase.java deleted file mode 100644 index f3814b6b0a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0023_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0021_TestCase, which tests that where a <component/>
- * <reference/> with multiplicity=1..1 is wired to a component service
- * in the same composite and is also promoted by a <composite/> <reference/>
- * which is wired to a target service by a component using the <composite/>
- * as its implementation, that this is an error
- */
-public class ASM_0023_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0023";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0023.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0024_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0024_TestCase.java deleted file mode 100644 index 7f0ce03ae2..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0024_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0024_TestCase, which tests that where a <component/>
- * <reference/> has @target set to some service, that the reference
- * can have no child <binding/> elements
- */
-public class ASM_0024_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0024";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0024.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java deleted file mode 100644 index 6f022457cc..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0025_TestCase, which tests that where a <component/>
- * <property/> has its value set by means of a child <value/> element,
- * that the type of the <value/> element matches the type declared for
- * the <property/> element
- */
-public class ASM_0025_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0025";
- config.input = "request";
- config.output = "ASM_0025 request service1 operation1 invokedcomplex1complex2";
- config.composite = "Test_ASM_0025.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java deleted file mode 100644 index 56be980561..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0026_TestCase, which tests that where a <component/> <property/>
- * has its value set by means of a child element that is NOT a <value/> element,
- * that a) the type of the <property/> element is declared as an XML Schema global
- * element by its @element attribute and b) that the child element is an instance
- * of that global element
- */
-public class ASM_0026_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0026";
- config.input = "request";
- config.output = "ASM_0026 request service1 operation1 invokedcomplex1complex2";
- config.composite = "Test_ASM_0026.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java deleted file mode 100644 index cbe3841832..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0027_TestCase, which tests that where a <component/> has
- * 2 or more <property/> child elements that each <property/> element has a
- * unique @name attribute value
- */
-public class ASM_0027_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0027";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0027.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0027
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java deleted file mode 100644 index 86f73c02cf..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0028_TestCase, which tests a <component/> <property/> @name
- * attribute matches the @name attribute of one of the <property/> elements of
- * the <componentType/> of the <implementation/> of the <component/>
- */
-public class ASM_0028_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0028";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0028.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0028
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java deleted file mode 100644 index aa4cbd44d4..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java +++ /dev/null @@ -1,42 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0029_TestCase, which tests that where a <component/> <property/>
- * has @many=false that there is only one <value/> child element of the <property/>
- */
-public class ASM_0029_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0029";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0029.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0029
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java deleted file mode 100644 index cc34a7f33b..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java +++ /dev/null @@ -1,42 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0030_TestCase, which tests that a <component/> <property/>
- * with a @value attribute set does not have any <value/> child elements
- */
-public class ASM_0030_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0030";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_0030.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0030
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java deleted file mode 100644 index d7d9904290..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0031_TestCase, which tests that where a <component/> <reference/>
- * has its @target attribute set to a valid service and the <composite/> also
- * contains a <wire/> element with @source set to the <component/> <reference/>
- * and @target set to a second valid service and has @replace=true, the <reference/>
- * is wired to the second service only
- */
-public class ASM_0031_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0031";
- config.input = "request";
- config.output = "ASM_0031 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0031.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0031
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0032_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0032_TestCase.java deleted file mode 100644 index 97b952b139..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0032_TestCase.java +++ /dev/null @@ -1,46 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0032_TestCase, which tests where a <component/> <service/>
- * has no <binding/> subelements and the corresponding <service/> element of
- * the <componentType/> of the <component/> <implementation/> has one or more
- * <binding/> subelements, the <component/> <service/> is made available with
- * all the bindings declared on the <service/> element of the <componentType/>
- */
-public class ASM_0032_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0032";
- config.input = "request";
- config.output =
- "ASM_0032 request service1 operation1 invoked service2 operation1 invokedservice2 operation1 invoked";
- config.composite = "Test_ASM_0032.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0032
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0033_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0033_TestCase.java deleted file mode 100644 index 87fa6cdde5..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0033_TestCase.java +++ /dev/null @@ -1,45 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0033_TestCase, which tests that where a <component/> <service/>
- * has no <binding/> subelements and the corresponding <service/> element of the
- * <componentType/> of the <component/> <implementation/> has no <binding/> subelements,
- * the <component/> <service/> is made available with binding.sca
- */
-public class ASM_0033_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0033";
- config.input = "request";
- config.output =
- "ASM_0033 request service1 operation1 invoked service2 operation1 invokedservice2 operation1 invoked";
- config.composite = "Test_ASM_0033.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0032
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0034_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0034_TestCase.java deleted file mode 100644 index 69f4e55012..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_0034_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_0034_TestCase, which tests that where a <component/> <service/>
- * has 1 or more <binding/> subelements the <component/> <service/> is made
- * available with all the bindings declared on the <service/> element
- */
-public class ASM_0034_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0034";
- config.input = "request";
- config.output =
- "ASM_0034 request service1 operation1 invoked service2 operation1 invokedservice2 operation1 invoked";
- config.composite = "Test_ASM_0034.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_0034
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6001_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6001_TestCase.java deleted file mode 100644 index ba1666f2cb..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6001_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6001_TestCase, which tests that where an SCA contribution
- * contains two <composite/> elements with the same name and same
- * targetNamespace that an SCA application using that composite does not run
- * and that the SCA runtime reports an error
- */
-public class ASM_6001_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6001";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6001.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6001
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6002_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6002_TestCase.java deleted file mode 100644 index 7827b2dbda..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6002_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6002_TestCase, which tests that where a <composite/> has
- * multiple <service/> subelements that the @name attributes are unique
- * across those subelements
- */
-public class ASM_6002_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6002";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6002.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6002
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6003_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6003_TestCase.java deleted file mode 100644 index c6ebf7134f..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6003_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6003_TestCase, which tests that where a <composite/> has a
- * <service/> subelement that the @promote attribute identifies a <service/>
- * of a <component/> in the <composite/>
- */
-public class ASM_6003_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6003";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6003.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6003
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6004_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6004_TestCase.java deleted file mode 100644 index 41e7e5719e..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6004_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6004_TestCase, which tests that the <interface/> declared
- * on a <service/> subelement of a <composite/> is a compatible subset of the
- * <interface/> declared on the <component/> <service/> reference by the
- * @promote attribute
- */
-public class ASM_6004_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6004";
- config.input = "request";
- config.output = "ASM_6004 request service1 operation1 invoked";
- config.composite = "Test_ASM_6004.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6004
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6005_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6005_TestCase.java deleted file mode 100644 index 46a76d351a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6005_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6005_TestCase, which tests that the the @name attribute
- * of a <composite/> <reference/> element is unique amongst the @name
- * attributes of all the <reference/> elements of that <composite/>
- */
-public class ASM_6005_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6005";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6005.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6004
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6006_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6006_TestCase.java deleted file mode 100644 index 4fef884d1a..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6006_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6006_TestCase, which tests that the @promote attribute of a
- * <composite/> <reference/> contains one or more URIs that each point to a
- * <reference/> of a <component/> in the <composite/>
- */
-public class ASM_6006_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6006";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6006.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6004
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6007_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6007_TestCase.java deleted file mode 100644 index da23a732e8..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6007_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6007_TestCase, which tests that a <composite/> <reference/>
- * can declare an <interface/> that is a compatible superset of the <interface/>
- * declared by each <component/> <reference/> promoted by the composite reference
- */
-public class ASM_6007_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6007";
- config.input = "request";
- config.output = "ASM_6007 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_6007.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6007
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6008_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6008_TestCase.java deleted file mode 100644 index 54c85059bd..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6008_TestCase.java +++ /dev/null @@ -1,44 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6008_TestCase, which tests that where a <composite/> <reference/>
- * has no <interface/> subelement, and that <reference/> promotes 2 or more
- * <component/> <reference/>s, that the <interface/> declared on each of the
- * <component/> <reference/>s are the same
- */
-public class ASM_6008_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6008";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6008.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6008
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6009_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6009_TestCase.java deleted file mode 100644 index eaff618911..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6009_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6009_TestCase, which tests that a <component/> <reference/>
- * with @multiplicity=0..1 can be promoted by a <composite/> <reference/> with
- * @multiplicity=1..1
- */
-public class ASM_6009_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6009";
- config.input = "request";
- config.output = "ASM_6009 request service1 operation1 invokedservice2 operation1 invoked";
- config.composite = "Test_ASM_6009.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6009
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6010_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6010_TestCase.java deleted file mode 100644 index e354e84787..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6010_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6010_TestCase, which tests a <component/> <reference/>
- * with @multiplicity=0..n can be promoted by a <composite/> <reference/>
- * with @multiplicity=0..1
- */
-public class ASM_6010_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6010";
- config.input = "request";
- config.output = "ASM_6010 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_6010.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6010
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6011_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6011_TestCase.java deleted file mode 100644 index 35e0d93093..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6011_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6011_TestCase, which tests that a <component/> <reference/>
- * with @multiplicity=1..n can be promoted by a <composite/> <reference/> with
- * @multiplicity=1..1
- */
-public class ASM_6011_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6011";
- config.input = "request";
- config.output = "ASM_6011 request service1 operation1 invoked service2 operation1 invoked";
- config.composite = "Test_ASM_6011.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6009
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6012_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6012_TestCase.java deleted file mode 100644 index 60f35f399c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6012_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6009_TestCase, which tests that a <component/> <reference/>
- * with @multiplicity=0..1 can be promoted by a <composite/> <reference/> with
- * @multiplicity=1..1
- */
-public class ASM_6012_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6012";
- config.input = "request";
- config.output = "exception";
- config.composite = "Test_ASM_6012.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6012
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6013_TestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6013_TestCase.java deleted file mode 100644 index c3b0642019..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/ASM_6013_TestCase.java +++ /dev/null @@ -1,43 +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 client;
-
-import test.ASM_0002_Client;
-import testClient.TestInvocation;
-
-/**
- * Client for ASM_6009_TestCase, which tests that a <component/> <reference/>
- * with @autowire=true is wired to a compatible <component/> <service/> in
- * the same <composite/>
- */
-public class ASM_6013_TestCase extends BaseJAXWSTestCase {
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_6013";
- config.input = "request";
- config.output = "ASM_6013 request service1 operation1 invoked third operation1 invoked";
- config.composite = "Test_ASM_6013.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class Test_ASM_6013
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseJAXWSTestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseJAXWSTestCase.java deleted file mode 100644 index bf2142b41d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseJAXWSTestCase.java +++ /dev/null @@ -1,159 +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 client;
-
-import static org.junit.Assert.assertEquals;
-
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-
-import org.apache.tuscany.sca.node.Node;
-import org.apache.tuscany.sca.node.equinox.launcher.Contribution;
-import org.apache.tuscany.sca.node.equinox.launcher.ContributionLocationHelper;
-import org.apache.tuscany.sca.node.equinox.launcher.NodeLauncher;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-import test.ASM_0001_Client;
-import testClient.TestException;
-import testClient.TestException_Exception;
-import testClient.TestInvocation;
-
-/**
- * A generic test client based on JAX-WS APIs
- */
-public class BaseJAXWSTestCase {
-
- protected NodeLauncher launcher;
- protected Node node;
- protected TestConfiguration testConfiguration = getTestConfiguration();
- static boolean proceed = true;
-
- public static void main(String[] args) throws Exception {
- BaseJAXWSTestCase test = new BaseJAXWSTestCase();
- test.setUp();
- test.tearDown();
- }
-
- @Before
- public void setUp() throws Exception {
- try {
- startContribution();
- } catch (Exception e) {
- // If the SCA runtime refuses to start an invalid contribution, then this is also
- // regarded as a successful outcome
- System.out.println("Exception received - detail: " + e.getMessage());
- assertEquals(testConfiguration.getExpectedOutput(), "exception");
- System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
- // Mark this test as not to proceed further
- proceed = false;
- } // end try
- }
-
- @After
- public void tearDown() throws Exception {
- stopContribution();
- }
-
- @Test
- public void testDummy() throws Exception {
- // If an exception were thrown during initialization, let's go no further
- if (proceed == false)
- return;
-
- // System.out.println("Test " + testName + " starting");
- String output = null;
- try {
- output = invokeTest(testConfiguration.getInput());
-
- } catch (TestException_Exception e) {
- TestException exceptionContent = e.getFaultInfo();
- System.out.println("Service fault received - detail: " + exceptionContent.getMessage());
- assertEquals(testConfiguration.getExpectedOutput(), "exception");
- System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
- return;
- } catch (Throwable e) {
- e.printStackTrace();
- System.out.println("Exception received - detail: " + e.getMessage());
- assertEquals(testConfiguration.getExpectedOutput(), "exception");
- System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
- return;
- }
- assertEquals(testConfiguration.getExpectedOutput(), output);
- System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
- }
-
- public String invokeTest(String input) throws Exception {
- //Web service invocation via JAXWS
- QName serviceName = new QName("http://test/", "TestInvocationService");
- URL wsdlLocation = this.getClass().getClassLoader().getResource("TestClient.wsdl");
- javax.xml.ws.Service webService = Service.create(wsdlLocation, serviceName);
- TestInvocation wsProxy = (TestInvocation)webService.getPort(testConfiguration.getServiceInterface());
-
- String output = wsProxy.invokeTest(input);
-
- return output;
- } // end method invokeTest
-
- protected <T> T getService(Class<T> interfaze, String serviceName) {
- T service = node.getService(interfaze, serviceName);
- return service;
- } // end getService
-
- protected void startContribution() throws Exception {
- // Tuscany specific code which starts the contribution holding the test
- launcher = NodeLauncher.newInstance();
- node =
- launcher.createNode(testConfiguration.getComposite(), new Contribution(testConfiguration.getTestName(),
- getContributionURI()));
- System.out.println("SCA Node API ClassLoader: " + node.getClass().getClassLoader());
- node.start();
- } // end method startContribution
-
- protected void stopContribution() throws Exception {
- if (node != null) {
- node.stop();
- node.destroy();
- }
- if (launcher != null) {
- launcher.destroy();
- }
- } // end method stopContribution
-
- protected String getContributionURI() {
- String location = ContributionLocationHelper.getContributionLocation(testConfiguration.getTestClass());
- return location;
- }
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0001";
- config.input = "request";
- config.output = config.testName + " " + config.input + " invoked ok";
- config.composite = "Test_ASM_0101.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0001_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class BaseTest
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseTestCase.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseTestCase.java deleted file mode 100644 index 739417e0d7..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/BaseTestCase.java +++ /dev/null @@ -1,122 +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 client;
-
-import static org.junit.Assert.assertEquals;
-
-import org.apache.tuscany.sca.node.Node;
-import org.apache.tuscany.sca.node.equinox.launcher.Contribution;
-import org.apache.tuscany.sca.node.equinox.launcher.ContributionLocationHelper;
-import org.apache.tuscany.sca.node.equinox.launcher.NodeLauncher;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-import test.ASM_0001_Client;
-import test.TestInvocation;
-
-/**
- * A generic test client based on Tuscany APIs
- */
-public class BaseTestCase {
-
- protected NodeLauncher launcher;
- protected Node node;
- protected TestConfiguration testConfiguration = getTestConfiguration();
-
- public static void main(String[] args) throws Exception {
- BaseTestCase test = new BaseTestCase();
- test.setUp();
- test.tearDown();
- }
-
- @Before
- public void setUp() throws Exception {
- startContribution();
- }
-
- @After
- public void tearDown() throws Exception {
- stopContribution();
- }
-
- @Test
- public void testDummy() throws Exception {
- // System.out.println("Test " + testName + " starting");
- try {
- String output = invokeTest(testConfiguration.getInput());
- assertEquals(testConfiguration.getExpectedOutput(), output);
- } catch (Exception e) {
- assertEquals(testConfiguration.getExpectedOutput(), "exception");
- System.out.println("Expected exception - detail: " + e.getMessage());
- }
- System.out.println("Test " + testConfiguration.getTestName() + " completed successfully");
- }
-
- public String invokeTest(String input) throws Exception {
-
- TestInvocation service =
- (TestInvocation)getService(testConfiguration.getServiceInterface(), testConfiguration.getTestServiceName());
-
- return service.invokeTest(input);
- } // end method invokeTest
-
- protected <T> T getService(Class<T> interfaze, String serviceName) {
- T service = node.getService(interfaze, serviceName);
- return service;
- } // end getService
-
- protected void startContribution() throws Exception {
- // Tuscany specific code which starts the contribution holding the test
- launcher = NodeLauncher.newInstance();
- node =
- launcher.createNode(testConfiguration.getComposite(), new Contribution(testConfiguration.getTestName(),
- getContributionURI()));
- System.out.println("SCA Node API ClassLoader: " + node.getClass().getClassLoader());
- node.start();
- } // end method startContribution
-
- protected void stopContribution() throws Exception {
- if (node != null) {
- node.stop();
- node.destroy();
- }
- if (launcher != null) {
- launcher.destroy();
- }
- } // end method stopContribution
-
- protected String getContributionURI() {
- String location = ContributionLocationHelper.getContributionLocation(testConfiguration.getTestClass());
- return location;
- }
-
- protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0001";
- config.input = "request";
- config.output = config.testName + " " + config.input + " invoked ok";
- config.composite = "Test_ASM_0001.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0001_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
- }
-
-} // end class BaseTest
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/TestConfiguration.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/TestConfiguration.java deleted file mode 100644 index 99e9937bcb..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/client/TestConfiguration.java +++ /dev/null @@ -1,67 +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 client;
-
-/**
- * A class to hold the metadata about the test
- * @author MikeEdwards
- *
- */
-class TestConfiguration {
-
- public String testName;
- public String input;
- public String output;
- public String composite;
- public String testServiceName;
- public Class<?> testClass; //TODO - does the client need this??
- public Class<?> serviceInterface;
-
- public TestConfiguration() {
- }
-
- public String getTestName() {
- return testName;
- }
-
- public String getInput() {
- return input;
- }
-
- public String getExpectedOutput() {
- return output;
- }
-
- public String getComposite() {
- return composite;
- }
-
- public String getTestServiceName() {
- return testServiceName;
- }
-
- public Class<?> getTestClass() {
- return testClass;
- }
-
- public Class<?> getServiceInterface() {
- return serviceInterface;
- }
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTest.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTest.java deleted file mode 100644 index 4b6011e2e3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTest.java +++ /dev/null @@ -1,79 +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 testClient;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElementRef;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {"arg0"})
-@XmlRootElement(name = "invokeTest")
-public class InvokeTest {
-
- @XmlElementRef(name = "arg0", type = JAXBElement.class)
- protected JAXBElement<String> arg0;
-
- /**
- * Gets the value of the arg0 property.
- *
- * @return
- * possible object is
- * {@link JAXBElement }{@code <}{@link String }{@code >}
- *
- */
- public JAXBElement<String> getArg0() {
- return arg0;
- }
-
- /**
- * Sets the value of the arg0 property.
- *
- * @param value
- * allowed object is
- * {@link JAXBElement }{@code <}{@link String }{@code >}
- *
- */
- public void setArg0(JAXBElement<String> value) {
- this.arg0 = ((JAXBElement<String>)value);
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTestResponse.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTestResponse.java deleted file mode 100644 index 934e13b744..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/InvokeTestResponse.java +++ /dev/null @@ -1,79 +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 testClient;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElementRef;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {"_return"})
-@XmlRootElement(name = "invokeTestResponse")
-public class InvokeTestResponse {
-
- @XmlElementRef(name = "return", type = JAXBElement.class)
- protected JAXBElement<String> _return;
-
- /**
- * Gets the value of the return property.
- *
- * @return
- * possible object is
- * {@link JAXBElement }{@code <}{@link String }{@code >}
- *
- */
- public JAXBElement<String> getReturn() {
- return _return;
- }
-
- /**
- * Sets the value of the return property.
- *
- * @param value
- * allowed object is
- * {@link JAXBElement }{@code <}{@link String }{@code >}
- *
- */
- public void setReturn(JAXBElement<String> value) {
- this._return = ((JAXBElement<String>)value);
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/ObjectFactory.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/ObjectFactory.java deleted file mode 100644 index 1cdc02c2d2..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/ObjectFactory.java +++ /dev/null @@ -1,105 +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 testClient;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the testClient package.
- * <p>An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _TestException_QNAME = new QName("http://test/", "TestException");
- private final static QName _InvokeTestArg0_QNAME = new QName("", "arg0");
- private final static QName _InvokeTestResponseReturn_QNAME = new QName("", "return");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: testClient
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link InvokeTest }
- *
- */
- public InvokeTest createInvokeTest() {
- return new InvokeTest();
- }
-
- /**
- * Create an instance of {@link InvokeTestResponse }
- *
- */
- public InvokeTestResponse createInvokeTestResponse() {
- return new InvokeTestResponse();
- }
-
- /**
- * Create an instance of {@link TestException }
- *
- */
- public TestException createTestException() {
- return new TestException();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link TestException }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://test/", name = "TestException")
- public JAXBElement<TestException> createTestException(TestException value) {
- return new JAXBElement<TestException>(_TestException_QNAME, TestException.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "arg0", scope = InvokeTest.class)
- public JAXBElement<String> createInvokeTestArg0(String value) {
- return new JAXBElement<String>(_InvokeTestArg0_QNAME, String.class, InvokeTest.class, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "return", scope = InvokeTestResponse.class)
- public JAXBElement<String> createInvokeTestResponseReturn(String value) {
- return new JAXBElement<String>(_InvokeTestResponseReturn_QNAME, String.class, InvokeTestResponse.class, value);
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/README.txt b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/README.txt deleted file mode 100644 index d376ab955d..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/README.txt +++ /dev/null @@ -1,19 +0,0 @@ -This README describes the JAX-WS client files for the SCA Assembly test invocation interface.
-
-The test invocation interface is in the TestInvocation.java interface file.
-This is presented as a Web service by the SCA runtime, for invocation by a general Web service client.
-The WSDL is captured in the file TestClient.wsdl in the resources directory for the testcases.
-
-The JAX-WS client files for invoking the Web service contained in TestClient.wsdl are contained in this
-package. They are generated from the WSDL using the wsimport tool (a standard part of JDK 1.6.x):
-
-wsimport TestClient.wsdl -keep -p testClient
-
-"-keep" is used to ensure that the generated .java files are retained (otherwise all that is created are
-the binary .class files).
-
-"-p testClient" is used to force the generated Java files to belong to the package "testClient" - this package
-name is used to keep a clean separation between the client files and the test service files
-
-
-Mike Edwards, 6th January 2009.
\ No newline at end of file diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException.java deleted file mode 100644 index a400c1a362..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException.java +++ /dev/null @@ -1,74 +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 testClient;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-/**
- * <p>Java class for TestException complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="TestException">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "TestException", propOrder = {"message"})
-public class TestException {
-
- protected String message;
-
- /**
- * Gets the value of the message property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getMessage() {
- return message;
- }
-
- /**
- * Sets the value of the message property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setMessage(String value) {
- this.message = value;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException_Exception.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException_Exception.java deleted file mode 100644 index 7e58b83da3..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestException_Exception.java +++ /dev/null @@ -1,68 +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 testClient;
-
-import javax.xml.ws.WebFault;
-
-/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.1.1 in JDK 6
- * Generated source version: 2.1
- *
- */
-@WebFault(name = "TestException", targetNamespace = "http://test/")
-public class TestException_Exception extends Exception {
-
- /**
- * Java type that goes as soapenv:Fault detail element.
- *
- */
- private TestException faultInfo;
-
- /**
- *
- * @param message
- * @param faultInfo
- */
- public TestException_Exception(String message, TestException faultInfo) {
- super(message);
- this.faultInfo = faultInfo;
- }
-
- /**
- *
- * @param message
- * @param faultInfo
- * @param cause
- */
- public TestException_Exception(String message, TestException faultInfo, Throwable cause) {
- super(message, cause);
- this.faultInfo = faultInfo;
- }
-
- /**
- *
- * @return
- * returns fault bean: testClient.TestException
- */
- public TestException getFaultInfo() {
- return faultInfo;
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocation.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocation.java deleted file mode 100644 index e9b74e2ae4..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocation.java +++ /dev/null @@ -1,52 +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 testClient;
-
-import javax.jws.WebMethod;
-import javax.jws.WebParam;
-import javax.jws.WebResult;
-import javax.jws.WebService;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.ws.RequestWrapper;
-import javax.xml.ws.ResponseWrapper;
-
-/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.1.1 in JDK 6
- * Generated source version: 2.1
- *
- */
-@WebService(name = "TestInvocation", targetNamespace = "http://test/")
-@XmlSeeAlso( {ObjectFactory.class})
-public interface TestInvocation {
-
- /**
- *
- * @param arg0
- * @return
- * returns java.lang.String
- * @throws TestException_Exception
- */
- @WebMethod
- @WebResult(targetNamespace = "")
- @RequestWrapper(localName = "invokeTest", targetNamespace = "http://test/", className = "testClient.InvokeTest")
- @ResponseWrapper(localName = "invokeTestResponse", targetNamespace = "http://test/", className = "testClient.InvokeTestResponse")
- public String invokeTest(@WebParam(name = "arg0", targetNamespace = "") String arg0) throws TestException_Exception;
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocationService.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocationService.java deleted file mode 100644 index b13e69087c..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/TestInvocationService.java +++ /dev/null @@ -1,83 +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 testClient;
-
-import java.net.MalformedURLException;
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-import javax.xml.ws.WebEndpoint;
-import javax.xml.ws.WebServiceClient;
-import javax.xml.ws.WebServiceFeature;
-
-/**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.1.1 in JDK 6
- * Generated source version: 2.1
- *
- */
-@WebServiceClient(name = "TestInvocationService", targetNamespace = "http://test/", wsdlLocation = "file:/C:/temp/Tuscany_2_0_Work/TestClient.wsdl")
-public class TestInvocationService extends Service {
-
- private final static URL TESTINVOCATIONSERVICE_WSDL_LOCATION;
-
- static {
- URL url = null;
- try {
- url = new URL("file:/C:/temp/Tuscany_2_0_Work/TestClient.wsdl");
- } catch (MalformedURLException e) {
- e.printStackTrace();
- }
- TESTINVOCATIONSERVICE_WSDL_LOCATION = url;
- }
-
- public TestInvocationService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- public TestInvocationService() {
- super(TESTINVOCATIONSERVICE_WSDL_LOCATION, new QName("http://test/", "TestInvocationService"));
- }
-
- /**
- *
- * @return
- * returns TestInvocation
- */
- @WebEndpoint(name = "TestInvocationPort")
- public TestInvocation getTestInvocationPort() {
- return (TestInvocation)super.getPort(new QName("http://test/", "TestInvocationPort"), TestInvocation.class);
- }
-
- /**
- *
- * @param features
- * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
- * @return
- * returns TestInvocation
- */
- @WebEndpoint(name = "TestInvocationPort")
- public TestInvocation getTestInvocationPort(WebServiceFeature... features) {
- return (TestInvocation)super.getPort(new QName("http://test/", "TestInvocationPort"),
- TestInvocation.class,
- features);
- }
-
-}
diff --git a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/package-info.java b/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/package-info.java deleted file mode 100644 index 847e70af9f..0000000000 --- a/branches/sca-java-2.0-M2/stest/sampleTest/src/test/java/testClient/package-info.java +++ /dev/null @@ -1,21 +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.
- */
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://test/")
-package testClient;
-
|