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