This project has retired. For details please refer to its Attic page.
C:\projects\asf\juddi-scout\src\main\java\org\apache\ws\scout\model\uddi\v2\FindTModel.java xref
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.XmlType;
15  
16  
17  /**
18   * <p>Java class for find_tModel complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="find_tModel">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/>
28   *         &lt;element ref="{urn:uddi-org:api_v2}name" minOccurs="0"/>
29   *         &lt;element ref="{urn:uddi-org:api_v2}identifierBag" minOccurs="0"/>
30   *         &lt;element ref="{urn:uddi-org:api_v2}categoryBag" minOccurs="0"/>
31   *       &lt;/sequence>
32   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
33   *       &lt;attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "find_tModel", propOrder = {
43      "findQualifiers",
44      "name",
45      "identifierBag",
46      "categoryBag"
47  })
48  public class FindTModel {
49  
50      protected FindQualifiers findQualifiers;
51      protected Name name;
52      protected IdentifierBag identifierBag;
53      protected CategoryBag categoryBag;
54      @XmlAttribute(required = true)
55      protected String generic;
56      @XmlAttribute
57      protected Integer maxRows;
58  
59      /**
60       * Gets the value of the findQualifiers property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link FindQualifiers }
65       *     
66       */
67      public FindQualifiers getFindQualifiers() {
68          return findQualifiers;
69      }
70  
71      /**
72       * Sets the value of the findQualifiers property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link FindQualifiers }
77       *     
78       */
79      public void setFindQualifiers(FindQualifiers value) {
80          this.findQualifiers = value;
81      }
82  
83      /**
84       * Gets the value of the name property.
85       * 
86       * @return
87       *     possible object is
88       *     {@link Name }
89       *     
90       */
91      public Name getName() {
92          return name;
93      }
94  
95      /**
96       * Sets the value of the name property.
97       * 
98       * @param value
99       *     allowed object is
100      *     {@link Name }
101      *     
102      */
103     public void setName(Name value) {
104         this.name = value;
105     }
106 
107     /**
108      * Gets the value of the identifierBag property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link IdentifierBag }
113      *     
114      */
115     public IdentifierBag getIdentifierBag() {
116         return identifierBag;
117     }
118 
119     /**
120      * Sets the value of the identifierBag property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link IdentifierBag }
125      *     
126      */
127     public void setIdentifierBag(IdentifierBag value) {
128         this.identifierBag = value;
129     }
130 
131     /**
132      * Gets the value of the categoryBag property.
133      * 
134      * @return
135      *     possible object is
136      *     {@link CategoryBag }
137      *     
138      */
139     public CategoryBag getCategoryBag() {
140         return categoryBag;
141     }
142 
143     /**
144      * Sets the value of the categoryBag property.
145      * 
146      * @param value
147      *     allowed object is
148      *     {@link CategoryBag }
149      *     
150      */
151     public void setCategoryBag(CategoryBag value) {
152         this.categoryBag = value;
153     }
154 
155     /**
156      * Gets the value of the generic property.
157      * 
158      * @return
159      *     possible object is
160      *     {@link String }
161      *     
162      */
163     public String getGeneric() {
164         return generic;
165     }
166 
167     /**
168      * Sets the value of the generic property.
169      * 
170      * @param value
171      *     allowed object is
172      *     {@link String }
173      *     
174      */
175     public void setGeneric(String value) {
176         this.generic = value;
177     }
178 
179     /**
180      * Gets the value of the maxRows property.
181      * 
182      * @return
183      *     possible object is
184      *     {@link Integer }
185      *     
186      */
187     public Integer getMaxRows() {
188         return maxRows;
189     }
190 
191     /**
192      * Sets the value of the maxRows property.
193      * 
194      * @param value
195      *     allowed object is
196      *     {@link Integer }
197      *     
198      */
199     public void setMaxRows(Integer value) {
200         this.maxRows = value;
201     }
202 
203 }