diff options
Diffstat (limited to 'sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources')
31 files changed, 1351 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite new file mode 100644 index 0000000000..d113ba26c3 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/binding_resolution.composite @@ -0,0 +1,43 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + name="binding-resolution" targetNamespace="assembly-tests"> + + <component name="FComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.FServiceImpl"/> + + <service name="FService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + </service> + + <service name="FService2"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + + </service> + + <service name="FService3"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService3"/> + </service> + + + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite new file mode 100644 index 0000000000..29dc96098e --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/callback_bindings.composite @@ -0,0 +1,56 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-callback-bindings"> + + <component name="MyServiceClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.callback.MyClientImpl"/> + <reference name="myService" target="MyServiceImplComponent/MyService"> + + <callback> + <binding.sca/> + <binding.jms/> + <binding.ws uri="http://localhost:8087/MyService"/> + <binding.ws uri="http://localhost:8088/MyService"/> + </callback> + + </reference> + + </component> + + <component name="MyServiceImplComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.callback.MyServiceImpl"/> + + <service name="MyService"> + <!--<interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.callback.MyService"/>--> + <callback> + <binding.sca/> + <binding.jms/> + <binding.ws uri="http://localhost:8087/MyService"/> + </callback> + </service> + + </component> + + + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite new file mode 100644 index 0000000000..bb452feac9 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component.composite @@ -0,0 +1,41 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + <reference name="b" target="BComponent"/> + <reference name="b2" target="B2Component"/> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite new file mode 100644 index 0000000000..0886c94a90 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_duplicate_property.composite @@ -0,0 +1,35 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceAImpl"/> + + <property name="strProperty">value1</property> + <property name="strProperty">value2</property> + + + </component> + + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite new file mode 100644 index 0000000000..5e975e5105 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_1.composite @@ -0,0 +1,48 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceAImpl"/> + + <property name="strProperty">I am a string</property> + <property name="objProperty">I am a object</property> + + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceBImpl"/> + <property name="strProperty" type="xsd:string"> + <value>I am a string</value> + </property> + <!-- + <property name="intProperty" value="100" type="xsd:int"/> + --> + + <property name="objProperty" value="I am a object"/> + + </component> + + + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite new file mode 100644 index 0000000000..42d7234a1c --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_2.composite @@ -0,0 +1,52 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns="http://www.example.com/Customer" targetNamespace="http://www.example.com/Customer"> + + <xsd:element name="customer" type="Customer"/> + <xsd:complexType name="Customer"> + <xsd:sequence> + <xsd:element name="firstName" type="xsd:string"/> + <xsd:element name="middleName" type="xsd:string"/> + <xsd:element name="lastName" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:schema> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceCImpl"/> + <!-- + <property name="customerInfo" xsi:type="Customer"> + + <firstName>Ku</firstName> + <middleName>Jun</middleName> + <lastName>Guo</lastName> + + </property> + --> + + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite new file mode 100644 index 0000000000..c6b0d2f245 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/component_property_3.composite @@ -0,0 +1,38 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.property.ServiceCImpl"/> + + <property name="strProperty"> + I am a string + </property> + <property name="objectProperty"> + I am an object + </property> + + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite new file mode 100644 index 0000000000..3019542091 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniquename.composite @@ -0,0 +1,33 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-non-unique-name--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + </component> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite new file mode 100644 index 0000000000..0f859f908f --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomponenttype.composite @@ -0,0 +1,29 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="ABComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.ABServiceImpl"/> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite new file mode 100644 index 0000000000..00f3d00a2d --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/nonuniqueservicenameincomposite.composite @@ -0,0 +1,47 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + + <component name="CDComponent"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + </service> + + + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + + + + + </component> + +</composite>
\ No newline at end of file diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite new file mode 100644 index 0000000000..b4d2abc011 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notcompatibleinterface.composite @@ -0,0 +1,38 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="EEComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.EServiceImpl"/> + + + <service name="EEService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.EEService"/> + + </service> + + + + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite new file mode 100644 index 0000000000..3f57e56cf5 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/notmatchofservicename.composite @@ -0,0 +1,41 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="DComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.DServiceImpl"/> + + <service name="DService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + <service name="DService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + + </service> + + + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType new file mode 100644 index 0000000000..7cc63afee1 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/ABServiceImpl.componentType @@ -0,0 +1,32 @@ +<?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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + + <service name="AService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.AService"/> + </service> + + <service name="AService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.BService"/> + </service> + + +</componentType>
\ No newline at end of file diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType new file mode 100644 index 0000000000..899f84b2dd --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/DServiceImpl.componentType @@ -0,0 +1,31 @@ +<?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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.DServiceImpl"/> + + <service name="DService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.DService"/> + </service> + + + + +</componentType>
\ No newline at end of file diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType new file mode 100644 index 0000000000..86a7be9cc0 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/EServiceImpl.componentType @@ -0,0 +1,31 @@ +<?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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.EServiceImpl"/> + + <service name="EEService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.EService"/> + </service> + + + + +</componentType>
\ No newline at end of file diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType new file mode 100644 index 0000000000..09cf5881a2 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/org/apache/tuscany/sca/vtest/assembly/component/impl/FServiceImpl.componentType @@ -0,0 +1,42 @@ +<?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. +--> +<componentType xmlns="http://www.osoa.org/xmlns/sca/1.0"> + + + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.FServiceImpl"/> + + <service name="FService1"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService1"/> + </service> + + <service name="FService2"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + + </service> + + <service name="FService3"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.FService"/> + <binding.ws uri="http://localhost:8085/FService4"/> + </service> + + + +</componentType>
\ No newline at end of file diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite new file mode 100644 index 0000000000..396aa0557c --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_moretargets.composite @@ -0,0 +1,62 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientBImpl"/> + + <service name="MyClientB"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientB"/> + </service> + + <reference name="myservices1" target="ServiceComponent1/MyService ServiceComponent2/MyService" + multiplicity="1..1"> + </reference> + + <reference name="myservices2" target="ServiceComponent1/MyService ServiceComponent2/MyService" + multiplicity="0..1"> + </reference> + + </component> + + + + <component name="ServiceComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + <component name="ServiceComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl2"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite new file mode 100644 index 0000000000..7cf1d0b2e8 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_multitargets.composite @@ -0,0 +1,58 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientEImpl"/> + + <service name="MyClientE"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientE"/> + </service> + + <reference name="myservices" multiplicity="0..n" target="ServiceComponent/MyService ServiceComponent2/MyService"> + </reference> + + <reference name="myservice" multiplicity="1..n" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + <component name="ServiceComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl2"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite new file mode 100644 index 0000000000..eb4c820ca0 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_ntargets.composite @@ -0,0 +1,59 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientDImpl"/> + + <service name="MyClientD"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientD"/> + </service> + + <reference name="service1" multiplicity="1..n"> + </reference> + + <reference name="service2" multiplicity="1..1"> + </reference> + + <reference name="service3" multiplicity="1..n" target="ServiceComponent/MyService"> + </reference> + + <reference name="service4" multiplicity="1..1" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite new file mode 100644 index 0000000000..0895f2b7ce --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_multiplicity_zerotarget.composite @@ -0,0 +1,51 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientCImpl"/> + + <service name="MyClientC"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientC"/> + </service> + + <reference name="service1" multiplicity="0..1"> + </reference> + + <reference name="service2" multiplicity="0..n"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + +</composite> + diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite new file mode 100644 index 0000000000..e5e492f34b --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/reference_wiredbyimpl.composite @@ -0,0 +1,59 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService" wiredByImpl="true"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + + </component> + + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + + + + + + + + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite new file mode 100644 index 0000000000..9544c947d1 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename.composite @@ -0,0 +1,49 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component"> + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite new file mode 100644 index 0000000000..e7445c4a2a --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_1.composite @@ -0,0 +1,50 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite new file mode 100644 index 0000000000..bf39310764 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_2.composite @@ -0,0 +1,51 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + + <component name="ClientComponent2"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite new file mode 100644 index 0000000000..e2ef1947e8 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_3.composite @@ -0,0 +1,52 @@ +<?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. +--> +<!--to test the reference name matched with implementation--> + +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="b" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite new file mode 100644 index 0000000000..5ef8367193 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/referencename_4.composite @@ -0,0 +1,53 @@ +<?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. +--> +<!--to test the reference name not matched with implementation--> + +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-reference"> + + + <component name="ClientComponent1"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientAImpl"/> + + <service name="MyClientA"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA"/> + </service> + + <reference name="bb" target="ServiceComponent/MyService"> + </reference> + + <reference name="bService" target="ServiceComponent/MyService"> + </reference> + + </component> + + + + <component name="ServiceComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.reference.MyServiceImpl"/> + <service name="MyService"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.reference.MyService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite new file mode 100644 index 0000000000..9460f5a2e1 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/serviceelement.composite @@ -0,0 +1,42 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component--Composite"> + + <component name="AComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.AServiceImpl"/> + <reference name="b" target="BComponent"/> + <reference name="b2" target="B2Component"/> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + <service name="BService"/> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite new file mode 100644 index 0000000000..085d84f40e --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithbinding.composite @@ -0,0 +1,33 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithbinding-Composite"> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + <binding.sca/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite new file mode 100644 index 0000000000..cc915fbde5 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/servicewithinterface.composite @@ -0,0 +1,32 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-servicewithinterface-Composite"> + + <component name="CComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.CServiceImpl"/> + <service name="CServiceImpl"> + <interface.java interface="org.apache.tuscany.sca.vtest.assembly.component.CService"/> + </service> + </component> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite new file mode 100644 index 0000000000..9465cedaf9 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zerocomponents.composite @@ -0,0 +1,25 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-zero-components-Composite"> + +</composite> diff --git a/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite new file mode 100644 index 0000000000..8629f3817a --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.5.1/vtest/assembly/component/src/main/resources/zeroimplelements.composite @@ -0,0 +1,38 @@ +<?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://www.osoa.org/xmlns/sca/1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://assembly-tests" + name="Assemby-component-zeroimplelements-Composite"> + + <component name="AComponent"> + </component> + + <component name="BComponent"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b component value</property> + </component> + + <component name="B2Component"> + <implementation.java class="org.apache.tuscany.sca.vtest.assembly.component.impl.BServiceImpl"/> + <property name="someProperty">some b2 component value</property> + </component> + +</composite> |