summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/minicore/src/test/resources/marshall/javaChangeSet.xml
blob: 2ac4c6932e3df19829c8142740ae505adb215da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?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.
-->
<core:changeSet xmlns:core="http://tuscany.apache.org/xmlns/marshaller/1.0-SNAPSHOT">
	
	<!-- Component 1 -->
	<java:component initLevel="0" groupId="xyz" xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" componentId="cmp1" scope="STATELESS">
		<java:classLoaderId>#123</java:classLoaderId>
		<bc:instanceFactoryProvider xmlns:bc="http://tuscany.apache.org/xmlns/marshaller/byteCode/1.0-SNAPSHOT">
			<bc:byteCode>AB12345</bc:byteCode>
		</bc:instanceFactoryProvider>
	</java:component>
	
	<!-- Component 2 -->
	<java:component initLevel="0" groupId="xyz" xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" componentId="cmp2" scope="STATELESS">
		<java:classLoaderId>#123</java:classLoaderId>
		<reflect:instanceFactoryProvider xmlns:reflect="http://tuscany.apache.org/xmlns/marshaller/reflect/1.0-SNAPSHOT">
			<reflect:implementationClass>com.acme.Foo</reflect:implementationClass>
			<reflect:initMethod>init</reflect:initMethod>
			<reflect:destroyMethod>destroy</reflect:destroyMethod>
			<reflect:constructorArgument>java.lang.String</reflect:constructorArgument>
			<reflect:constructorArgument>java.lang.Long</reflect:constructorArgument>
			<reflect:cdiSource type="REFERENCE" name="abc"/>
			<reflect:injectionSite elementType="FIELD" type="PROPERTY" name="xyz" physicalName="xyz"/>
			<reflect:injectionSite elementType="METHOD" type="CALLBACK" name="abc" physicalName="abc"/>
			<reflect:property name="abc" value="123"/>
		</reflect:instanceFactoryProvider>
	</java:component>
	
	<!-- Wire 1 -->
	<core:wire>
		<java:wireSource uri="cmp1#rf1" callbackUri="a#b" optimizable="true" conversational="false" 
			xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" />
		<java:wireTarget uri="cmp2#sv2" callbackUri="a#b" optimizable="true" 
			xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" />
		<core:operation name="op2" conversationSequence="1">
			<core:parameter>java.lang.String</core:parameter>
			<core:parameter>java.lang.Long</core:parameter>
			<core:returnType>java.lang.Object</core:returnType>
		</core:operation>
	</core:wire>
	
	<!-- Wire 2 -->
	<core:wire>
		<java:wireSource uri="cmp2#rf2" callbackUri="a#b" optimizable="true" conversational="true" 
			xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" />
		<java:wireTarget uri="cmp1#sv1" callbackUri="a#b" optimizable="true" 
			xmlns:java="http://tuscany.apache.org/xmlns/marshaller/java/1.0-SNAPSHOT" />
		<core:operation name="op1" conversationSequence="2">
			<core:parameter>java.lang.String</core:parameter>
			<core:parameter>java.lang.Long</core:parameter>
			<core:returnType>java.lang.Object</core:returnType>
		</core:operation>
	</core:wire>
	
</core:changeSet>