1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.uddi.repl_v3;
20
21 import java.io.Serializable;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlTransient;
27 import javax.xml.bind.annotation.XmlType;
28 import org.uddi.custody_v3.KeyBag;
29 import org.uddi.custody_v3.TransferOperationalInfo;
30 import org.uddi.custody_v3.TransferToken;
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54 @XmlAccessorType(XmlAccessType.FIELD)
55 @XmlType(name = "transfer_custody", propOrder = {
56 "transferToken",
57 "keyBag",
58 "transferOperationalInfo"
59 })
60 public class TransferCustody implements Serializable{
61 @XmlTransient
62 private static final long serialVersionUID = 8770604650672969536L;
63 @XmlElement(namespace = "urn:uddi-org:custody_v3", required = true)
64 protected TransferToken transferToken;
65 @XmlElement(namespace = "urn:uddi-org:custody_v3", required = true)
66 protected KeyBag keyBag;
67 @XmlElement(namespace = "urn:uddi-org:custody_v3", required = true)
68 protected TransferOperationalInfo transferOperationalInfo;
69
70
71
72
73
74
75
76
77
78 public TransferToken getTransferToken() {
79 return transferToken;
80 }
81
82
83
84
85
86
87
88
89
90 public void setTransferToken(TransferToken value) {
91 this.transferToken = value;
92 }
93
94
95
96
97
98
99
100
101
102 public KeyBag getKeyBag() {
103 return keyBag;
104 }
105
106
107
108
109
110
111
112
113
114 public void setKeyBag(KeyBag value) {
115 this.keyBag = value;
116 }
117
118
119
120
121
122
123
124
125
126 public TransferOperationalInfo getTransferOperationalInfo() {
127 return transferOperationalInfo;
128 }
129
130
131
132
133
134
135
136
137
138 public void setTransferOperationalInfo(TransferOperationalInfo value) {
139 this.transferOperationalInfo = value;
140 }
141
142 }