View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.07.19 at 09:49:41 PM CDT 
6   //
7   
8   
9   package org.apache.ws.scout.model.uddi.v2;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for authToken complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="authToken">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element ref="{urn:uddi-org:api_v2}authInfo"/>
29   *       &lt;/sequence>
30   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31   *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "authToken", propOrder = {
41      "authInfo"
42  })
43  public class AuthToken {
44  
45      @XmlElement(required = true)
46      protected String authInfo;
47      @XmlAttribute(required = true)
48      protected String generic;
49      @XmlAttribute(required = true)
50      protected String operator;
51  
52      /**
53       * Gets the value of the authInfo property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link String }
58       *     
59       */
60      public String getAuthInfo() {
61          return authInfo;
62      }
63  
64      /**
65       * Sets the value of the authInfo property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link String }
70       *     
71       */
72      public void setAuthInfo(String value) {
73          this.authInfo = value;
74      }
75  
76      /**
77       * Gets the value of the generic property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getGeneric() {
85          return generic;
86      }
87  
88      /**
89       * Sets the value of the generic property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setGeneric(String value) {
97          this.generic = value;
98      }
99  
100     /**
101      * Gets the value of the operator property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getOperator() {
109         return operator;
110     }
111 
112     /**
113      * Sets the value of the operator property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setOperator(String value) {
121         this.operator = value;
122     }
123 
124 }