This project has retired. For details please refer to its
Attic page.
TransferToken xref
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.uddi.custody_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.XmlSchemaType;
27 import javax.xml.bind.annotation.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29 import javax.xml.datatype.XMLGregorianCalendar;
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53 @XmlAccessorType(XmlAccessType.FIELD)
54 @XmlType(name = "transferToken", propOrder = {
55 "nodeID",
56 "expirationTime",
57 "opaqueToken"
58 })
59 public class TransferToken implements Serializable{
60 @XmlTransient
61 private static final long serialVersionUID = 4303304106321293163L;
62 @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
63 protected String nodeID;
64 @XmlElement(required = true)
65 @XmlSchemaType(name = "dateTime")
66 protected XMLGregorianCalendar expirationTime;
67 @XmlElement(required = true)
68 protected byte[] opaqueToken;
69
70
71
72
73
74
75
76
77
78 public String getNodeID() {
79 return nodeID;
80 }
81
82
83
84
85
86
87
88
89
90 public void setNodeID(String value) {
91 this.nodeID = value;
92 }
93
94
95
96
97
98
99
100
101
102 public XMLGregorianCalendar getExpirationTime() {
103 return expirationTime;
104 }
105
106
107
108
109
110
111
112
113
114 public void setExpirationTime(XMLGregorianCalendar value) {
115 this.expirationTime = value;
116 }
117
118
119
120
121
122
123
124
125 public byte[] getOpaqueToken() {
126 return opaqueToken;
127 }
128
129
130
131
132
133
134
135
136 public void setOpaqueToken(byte[] value) {
137 this.opaqueToken = ((byte[]) value);
138 }
139
140 }