summaryrefslogtreecommitdiff
path: root/resources/mapFiles/KeyValuePairMap.xml
blob: 8175151f55bc90bf77c701913412d31de1f23d41 (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
<?xml version="1.0"?>

<mapping>
	<class name="com.c2kernel.utils.KeyValuePair">
		<map-to xml="KeyValuePair"/>
		<field name="mKey"
		       type="string"
		       direct="false"
		       get-method="getKey"
		       set-method="setKey">
		       <bind-xml name="Key" node="attribute"/>
		</field>
		<field name="IntegerValue"
		       type="java.lang.Integer"
		       direct="false">
		       <bind-xml name="Integer" node="attribute"/>
		</field>
		<field name="StringValue"
		       type="java.lang.String"
		       direct="false">
		       <bind-xml name="String" node="attribute"/>
		</field>
		<field name="BooleanValue"
		       type="java.lang.Boolean"
		       direct="false">
		       <bind-xml name="Boolean" node="attribute"/>
		</field>				
	</class>
</mapping>