This project has retired. For details please refer to its Attic page.
GetAllValidValues xref
View Javadoc
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.vscache_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 get_allValidValues complex type.
32   * 
33   * <p>The following schema fragment specifies the expected content contained within this class.
34   * 
35   * <pre>
36   * &lt;complexType name="get_allValidValues">
37   *   &lt;complexContent>
38   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39   *       &lt;sequence>
40   *         &lt;element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
41   *         &lt;element ref="{urn:uddi-org:api_v3}tModelKey"/>
42   *         &lt;element ref="{urn:uddi-org:vscache_v3}chunkToken" minOccurs="0"/>
43   *       &lt;/sequence>
44   *     &lt;/restriction>
45   *   &lt;/complexContent>
46   * &lt;/complexType>
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "get_allValidValues", propOrder = {
53      "authInfo",
54      "tModelKey",
55      "chunkToken"
56  })
57  public class GetAllValidValues implements Serializable{
58  	@XmlTransient
59  	private static final long serialVersionUID = 7053806928078203738L;
60  	@XmlElement(namespace = "urn:uddi-org:api_v3")
61      protected String authInfo;
62      @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
63      protected String tModelKey;
64      protected String chunkToken;
65  
66      /**
67       * Gets the value of the authInfo property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link String }
72       *     
73       */
74      public String getAuthInfo() {
75          return authInfo;
76      }
77  
78      /**
79       * Sets the value of the authInfo property.
80       * 
81       * @param value
82       *     allowed object is
83       *     {@link String }
84       *     
85       */
86      public void setAuthInfo(String value) {
87          this.authInfo = value;
88      }
89  
90      /**
91       * Gets the value of the tModelKey property.
92       * 
93       * @return
94       *     possible object is
95       *     {@link String }
96       *     
97       */
98      public String getTModelKey() {
99          return tModelKey;
100     }
101 
102     /**
103      * Sets the value of the tModelKey property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link String }
108      *     
109      */
110     public void setTModelKey(String value) {
111         this.tModelKey = value;
112     }
113 
114     /**
115      * Gets the value of the chunkToken property.
116      * 
117      * @return
118      *     possible object is
119      *     {@link String }
120      *     
121      */
122     public String getChunkToken() {
123         return chunkToken;
124     }
125 
126     /**
127      * Sets the value of the chunkToken property.
128      * 
129      * @param value
130      *     allowed object is
131      *     {@link String }
132      *     
133      */
134     public void setChunkToken(String value) {
135         this.chunkToken = value;
136     }
137 
138 }