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 package org.uddi.api_v2;
18
19 import javax.xml.bind.annotation.XmlAccessType;
20 import javax.xml.bind.annotation.XmlAccessorType;
21 import javax.xml.bind.annotation.XmlAttribute;
22 import javax.xml.bind.annotation.XmlElement;
23 import javax.xml.bind.annotation.XmlType;
24
25
26 /**
27 * <p>Java class for discard_authToken complex type.
28 *
29 * <p>The following schema fragment specifies the expected content contained within this class.
30 *
31 * <pre>
32 * <complexType name="discard_authToken">
33 * <complexContent>
34 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35 * <sequence>
36 * <element ref="{urn:uddi-org:api_v2}authInfo"/>
37 * </sequence>
38 * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
39 * </restriction>
40 * </complexContent>
41 * </complexType>
42 * </pre>
43 *
44 *
45 */
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "discard_authToken", propOrder = {
48 "authInfo"
49 })
50 public class DiscardAuthToken {
51
52 @XmlElement(required = true)
53 protected String authInfo;
54 @XmlAttribute(name = "generic", required = true)
55 protected String generic;
56
57 /**
58 * Gets the value of the authInfo property.
59 *
60 * @return
61 * possible object is
62 * {@link String }
63 *
64 */
65 public String getAuthInfo() {
66 return authInfo;
67 }
68
69 /**
70 * Sets the value of the authInfo property.
71 *
72 * @param value
73 * allowed object is
74 * {@link String }
75 *
76 */
77 public void setAuthInfo(String value) {
78 this.authInfo = value;
79 }
80
81 /**
82 * Gets the value of the generic property.
83 *
84 * @return
85 * possible object is
86 * {@link String }
87 *
88 */
89 public String getGeneric() {
90 return generic;
91 }
92
93 /**
94 * Sets the value of the generic property.
95 *
96 * @param value
97 * allowed object is
98 * {@link String }
99 *
100 */
101 public void setGeneric(String value) {
102 this.generic = value;
103 }
104
105 }