From 7d98f0821539f81d371d9be38a0bd1e4650d8cd0 Mon Sep 17 00:00:00 2001 From: antelder Date: Sat, 21 Mar 2009 09:19:18 +0000 Subject: [maven-release-plugin] copy for branch 2.0-M2 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@756900 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/itest/builder/ComponentDImpl.java | 43 +++++++++++++++ .../ComponentDReferenceMultiplicityImpl.java | 48 ++++++++++++++++ .../tuscany/sca/itest/builder/ComponentEImpl.java | 36 ++++++++++++ .../tuscany/sca/itest/builder/ComponentFImpl.java | 36 ++++++++++++ .../apache/tuscany/sca/itest/builder/Service3.java | 34 ++++++++++++ .../tuscany/sca/itest/builder/Service3a.java | 34 ++++++++++++ .../scenario1/META-INF/sca-contribution.xml | 23 ++++++++ .../main/resources/scenario1/scenario1.composite | 45 +++++++++++++++ .../main/resources/scenario1/scenario1a.composite | 47 ++++++++++++++++ .../scenario10/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario10/scenario10.composite | 62 +++++++++++++++++++++ .../resources/scenario10/scenario10a.composite | 61 +++++++++++++++++++++ .../src/main/resources/scenario10/service3.wsdl | 63 +++++++++++++++++++++ .../scenario11/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario11/scenario11.composite | 59 ++++++++++++++++++++ .../resources/scenario11/scenario11a.composite | 64 ++++++++++++++++++++++ .../src/main/resources/scenario11/service3.wsdl | 63 +++++++++++++++++++++ .../scenario12/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario12/scenario12.composite | 58 ++++++++++++++++++++ .../resources/scenario12/scenario12a.composite | 64 ++++++++++++++++++++++ .../scenario13/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario13/scenario13.composite | 58 ++++++++++++++++++++ .../resources/scenario13/scenario13a.composite | 64 ++++++++++++++++++++++ .../scenario2/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario2/scenario2.composite | 45 +++++++++++++++ .../main/resources/scenario2/scenario2a.composite | 47 ++++++++++++++++ .../scenario3/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario3/scenario3.composite | 44 +++++++++++++++ .../main/resources/scenario3/scenario3a.composite | 48 ++++++++++++++++ .../scenario4/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario4/scenario4.composite | 44 +++++++++++++++ .../main/resources/scenario4/scenario4a.composite | 48 ++++++++++++++++ .../scenario5/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario5/scenario5.composite | 46 ++++++++++++++++ .../main/resources/scenario5/scenario5a.composite | 47 ++++++++++++++++ .../src/main/resources/scenario5/scenarios.wsdl | 63 +++++++++++++++++++++ .../scenario6/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario6/scenario6.composite | 47 ++++++++++++++++ .../main/resources/scenario6/scenario6a.composite | 47 ++++++++++++++++ .../src/main/resources/scenario6/scenarios.wsdl | 63 +++++++++++++++++++++ .../scenario7/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario7/scenario7.composite | 45 +++++++++++++++ .../main/resources/scenario7/scenario7a.composite | 49 +++++++++++++++++ .../src/main/resources/scenario7/scenarios.wsdl | 63 +++++++++++++++++++++ .../scenario8/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario8/scenario8.composite | 44 +++++++++++++++ .../main/resources/scenario8/scenario8a.composite | 50 +++++++++++++++++ .../src/main/resources/scenario8/scenarios.wsdl | 63 +++++++++++++++++++++ .../scenario9/META-INF/sca-contribution.xml | 24 ++++++++ .../main/resources/scenario9/scenario9.composite | 60 ++++++++++++++++++++ .../main/resources/scenario9/scenario9a.composite | 61 +++++++++++++++++++++ 51 files changed, 2274 insertions(+) create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDImpl.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDReferenceMultiplicityImpl.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentEImpl.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentFImpl.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3a.java create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/service3.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/service3.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenarios.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenarios.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenarios.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8a.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenarios.wsdl create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/META-INF/sca-contribution.xml create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9.composite create mode 100644 sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9a.composite (limited to 'sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main') diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDImpl.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDImpl.java new file mode 100644 index 0000000000..a4c6e08844 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDImpl.java @@ -0,0 +1,43 @@ +/* + * 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 org.apache.tuscany.sca.itest.builder; + +import org.oasisopen.sca.annotation.Reference; +import org.oasisopen.sca.annotation.Service; + +/** + * Implementation class for ComponentD. + * + * @version $Rev$ $Date$ + */ +@Service(interfaces={Service3.class, Service3a.class}) +public class ComponentDImpl implements Service3, Service3a { + + @Reference + protected Service3a reference3; + + public String getGreetings(String name) { + return "Hello, " + name + "!"; + } + + public String getGreetings2(String name) { + return "Goodbye, " + name + "!"; + } + +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDReferenceMultiplicityImpl.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDReferenceMultiplicityImpl.java new file mode 100644 index 0000000000..bfc4e34644 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentDReferenceMultiplicityImpl.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.tuscany.sca.itest.builder; + +import java.util.List; + +import org.oasisopen.sca.annotation.Reference; +import org.oasisopen.sca.annotation.Service; + +/** + * Implementation class for ComponentD. + * + * @version $Rev$ $Date$ + */ +@Service(interfaces={Service3.class, Service3a.class}) +public class ComponentDReferenceMultiplicityImpl implements Service3, Service3a { + + @Reference + protected Service3a reference3; + + @Reference + protected List reference3a; + + public String getGreetings(String name) { + return "Hello, " + name + "!"; + } + + public String getGreetings2(String name) { + return "Goodbye, " + name + "!"; + } + +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentEImpl.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentEImpl.java new file mode 100644 index 0000000000..eb5b5dd5c0 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentEImpl.java @@ -0,0 +1,36 @@ +/* + * 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 org.apache.tuscany.sca.itest.builder; + +import org.oasisopen.sca.annotation.Service; + + +/** + * Implementation class for ComponentD. + * + * @version $Rev$ $Date$ + */ +@Service(interfaces={Service3.class}) +public class ComponentEImpl implements Service3 { + + + public String getGreetings(String name) { + return "Hello, " + name + " from ComponentE"; + } +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentFImpl.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentFImpl.java new file mode 100644 index 0000000000..db1eac6787 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/ComponentFImpl.java @@ -0,0 +1,36 @@ +/* + * 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 org.apache.tuscany.sca.itest.builder; + +import org.oasisopen.sca.annotation.Service; + + +/** + * Implementation class for ComponentD. + * + * @version $Rev$ $Date$ + */ +@Service(interfaces={Service3.class}) +public class ComponentFImpl implements Service3 { + + + public String getGreetings(String name) { + return "Hello, " + name + " from ComponentF"; + } +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3.java new file mode 100644 index 0000000000..f4b8d2cf39 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3.java @@ -0,0 +1,34 @@ +/* + * 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 org.apache.tuscany.sca.itest.builder; + +import org.oasisopen.sca.annotation.Remotable; + + +/** + * Interface for Service3 in ComponentD. + * + * @version $Rev$ $Date$ + */ +@Remotable +public interface Service3 { + + String getGreetings(String name); + +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3a.java b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3a.java new file mode 100644 index 0000000000..299f7606e3 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/java/org/apache/tuscany/sca/itest/builder/Service3a.java @@ -0,0 +1,34 @@ +/* + * 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 org.apache.tuscany.sca.itest.builder; + +import org.oasisopen.sca.annotation.Remotable; + + +/** + * Interface for Service3a in ComponentD. + * + * @version $Rev$ $Date$ + */ +@Remotable +public interface Service3a { + + String getGreetings2(String name); + +} diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..d8cb23bbd3 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1.composite new file mode 100644 index 0000000000..4e58cdfa16 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1.composite @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1a.composite new file mode 100644 index 0000000000..06b273c7a7 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario1/scenario1a.composite @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..ac01b3c687 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10.composite new file mode 100644 index 0000000000..2d127a7bec --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10.composite @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10a.composite new file mode 100644 index 0000000000..98103e360e --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/scenario10a.composite @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/service3.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/service3.wsdl new file mode 100644 index 0000000000..2477e23dc6 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario10/service3.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..8b82b43c68 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11.composite new file mode 100644 index 0000000000..2f5ca96d07 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11.composite @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11a.composite new file mode 100644 index 0000000000..381ccddcc3 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/scenario11a.composite @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/service3.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/service3.wsdl new file mode 100644 index 0000000000..2477e23dc6 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario11/service3.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..4028098023 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12.composite new file mode 100644 index 0000000000..23799f8487 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12.composite @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12a.composite new file mode 100644 index 0000000000..a2b4f88dc3 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario12/scenario12a.composite @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..1da59d5f04 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13.composite new file mode 100644 index 0000000000..631e38855f --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13.composite @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13a.composite new file mode 100644 index 0000000000..98976dc4e8 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario13/scenario13a.composite @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..6f174a4504 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2.composite new file mode 100644 index 0000000000..7c4eeda4bd --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2.composite @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2a.composite new file mode 100644 index 0000000000..5e97d7eea0 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario2/scenario2a.composite @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..22950dfe03 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3.composite new file mode 100644 index 0000000000..84f42c60fc --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3.composite @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3a.composite new file mode 100644 index 0000000000..18ed91142c --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario3/scenario3a.composite @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..a17e27c9d8 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4.composite new file mode 100644 index 0000000000..a0bdb0197d --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4.composite @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4a.composite new file mode 100644 index 0000000000..1b4cf27c76 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario4/scenario4a.composite @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..83a232db6e --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5.composite new file mode 100644 index 0000000000..2326afd2f2 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5.composite @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5a.composite new file mode 100644 index 0000000000..fdf1423b66 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenario5a.composite @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenarios.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenarios.wsdl new file mode 100644 index 0000000000..5cda7327dd --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario5/scenarios.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..776dfe4d97 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6.composite new file mode 100644 index 0000000000..9575612d51 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6.composite @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6a.composite new file mode 100644 index 0000000000..9c7b58e2cb --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenario6a.composite @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenarios.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenarios.wsdl new file mode 100644 index 0000000000..5cda7327dd --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario6/scenarios.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..ede31d6bee --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7.composite new file mode 100644 index 0000000000..e1d2e0cefe --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7.composite @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7a.composite new file mode 100644 index 0000000000..ef16dc0785 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenario7a.composite @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenarios.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenarios.wsdl new file mode 100644 index 0000000000..5cda7327dd --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario7/scenarios.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..7bb9e694a3 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8.composite new file mode 100644 index 0000000000..467b7f57fa --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8.composite @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8a.composite new file mode 100644 index 0000000000..9d9b5ba945 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenario8a.composite @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenarios.wsdl b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenarios.wsdl new file mode 100644 index 0000000000..5cda7327dd --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario8/scenarios.wsdl @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/META-INF/sca-contribution.xml b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..b6ec160506 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9.composite new file mode 100644 index 0000000000..83584ed482 --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9.composite @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9a.composite b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9a.composite new file mode 100644 index 0000000000..0021ec242b --- /dev/null +++ b/sandbox/ant/sca/branches/2.0-M2/itest/builder/src/main/resources/scenario9/scenario9a.composite @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3