blob: ee18d485eb229d3bb16c2016beda11309d465a6c (
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
|
<?xml version="1.0"?>
<mapping>
<class name="com.c2kernel.entity.agent.Job">
<map-to xml="Job"/>
<field name="id" type="integer" direct="false" get-method="getId" set-method="setId">
<bind-xml name="Id" node="attribute"/>
</field>
<field name="itemSysKey" type="integer" direct="false" get-method="getItemSysKey" set-method="setItemSysKey">
<bind-xml name="ItemSysKey" node="attribute"/>
</field>
<field name="stepName" type="string" direct="false" get-method="getStepName" set-method="setStepName">
<bind-xml name="StepName" node="attribute"/>
</field>
<field name="stepType" type="string" direct="false" get-method="getStepType" set-method="setStepType">
<bind-xml name="StepType" node="attribute"/>
</field>
<field name="stepPath" type="string" direct="false" get-method="getStepPath" set-method="setStepPath">
<bind-xml name="StepPath" node="attribute"/>
</field>
<field name="transitionId" type="integer" direct="false" get-method="getTransitionId" set-method="setTransitionId">
<bind-xml name="TransitionId" node="attribute"/>
</field>
<field name="currentStateId" type="integer" direct="false" get-method="getCurrentStateId" set-method="setCurrentStateId">
<bind-xml name="CurrentStateId" node="attribute"/>
</field>
<field name="targetStateId" type="integer" direct="false" get-method="getTargetStateId" set-method="setTargetStateId">
<bind-xml name="TargetStateId" node="attribute"/>
</field>
<field name="agentId" type="integer" direct="false" get-method="getAgentId" set-method="setAgentId">
<bind-xml name="AgentId" node="attribute"/>
</field>
<field name="agentName" type="string" direct="false" get-method="getAgentName" set-method="setAgentName">
<bind-xml name="AgentName" node="attribute"/>
</field>
<field name="agentRole" type="string" direct="false" get-method="getAgentRole" set-method="setAgentRole">
<bind-xml name="AgentRole" node="attribute"/>
</field>
<field name="schemaName" type="string" direct="false" get-method="getSchemaName" set-method="setSchemaName">
<bind-xml name="SchemaName" node="attribute"/>
</field>
<field name="schemaVersion" type="integer" direct="false" get-method="getSchemaVersion" set-method="setSchemaVersion">
<bind-xml name="SchemaVersion" node="attribute"/>
</field>
<field name="outcomeRequired" type="boolean" direct="false" get-method="isOutcomeRequired" set-method="setOutcomeRequired">
<bind-xml name="OutcomeRequired" node="attribute"/>
</field>
<field name="scriptName" type="string" direct="false" get-method="getScriptName" set-method="setScriptName">
<bind-xml name="ScriptName" node="attribute"/>
</field>
<field name="scriptVersion" type="integer" direct="false" get-method="getScriptVersion" set-method="setScriptVersion">
<bind-xml name="ScriptVersion" node="attribute"/>
</field>
<field name="actProps" type="com.c2kernel.utils.KeyValuePair" collection="array" container="false" direct="false" get-method="getKeyValuePairs" set-method="setKeyValuePairs">
<bind-xml name="ActProps" node="element"/>
</field>
</class>
<class name="com.c2kernel.entity.agent.JobArrayList">
<map-to xml="JobArrayList"/>
<field name="list" collection="arraylist" direct="true" type="com.c2kernel.entity.agent.Job">
<bind-xml name="JobArrayList" node="element"/>
</field>
</class>
</mapping>
|