1 /*
2 * Copyright 2001-2008 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
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.XmlTransient;
27 import javax.xml.bind.annotation.XmlType;
28
29
30 /**
31 * <p>Java class for discard_transferToken complex type.
32 *
33 * <p>The following schema fragment specifies the expected content contained within this class.
34 *
35 * <pre>
36 * <complexType name="discard_transferToken">
37 * <complexContent>
38 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 * <sequence>
40 * <element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
41 * <choice>
42 * <element ref="{urn:uddi-org:custody_v3}transferToken"/>
43 * <element ref="{urn:uddi-org:custody_v3}keyBag"/>
44 * </choice>
45 * </sequence>
46 * </restriction>
47 * </complexContent>
48 * </complexType>
49 * </pre>
50 *
51 *
52 */
53 @XmlAccessorType(XmlAccessType.FIELD)
54 @XmlType(name = "discard_transferToken", propOrder = {
55 "authInfo",
56 "transferToken",
57 "keyBag"
58 })
59 public class DiscardTransferToken implements Serializable{
60 @XmlTransient
61 private static final long serialVersionUID = -6277573385151936734L;
62 @XmlElement(namespace = "urn:uddi-org:api_v3")
63 protected String authInfo;
64 protected TransferToken transferToken;
65 protected KeyBag keyBag;
66
67 /**
68 * Gets the value of the authInfo property.
69 *
70 * @return
71 * possible object is
72 * {@link String }
73 *
74 */
75 public String getAuthInfo() {
76 return authInfo;
77 }
78
79 /**
80 * Sets the value of the authInfo property.
81 *
82 * @param value
83 * allowed object is
84 * {@link String }
85 *
86 */
87 public void setAuthInfo(String value) {
88 this.authInfo = value;
89 }
90
91 /**
92 * Gets the value of the transferToken property.
93 *
94 * @return
95 * possible object is
96 * {@link TransferToken }
97 *
98 */
99 public TransferToken getTransferToken() {
100 return transferToken;
101 }
102
103 /**
104 * Sets the value of the transferToken property.
105 *
106 * @param value
107 * allowed object is
108 * {@link TransferToken }
109 *
110 */
111 public void setTransferToken(TransferToken value) {
112 this.transferToken = value;
113 }
114
115 /**
116 * Gets the value of the keyBag property.
117 *
118 * @return
119 * possible object is
120 * {@link KeyBag }
121 *
122 */
123 public KeyBag getKeyBag() {
124 return keyBag;
125 }
126
127 /**
128 * Sets the value of the keyBag property.
129 *
130 * @param value
131 * allowed object is
132 * {@link KeyBag }
133 *
134 */
135 public void setKeyBag(KeyBag value) {
136 this.keyBag = value;
137 }
138
139 }