/apache-scout/src/main/java/org/apache/ws/scout/model/uddi/v2/FindBusiness.java

# · Java · 265 lines · 76 code · 23 blank · 166 comment · 2 complexity · 325276f7a1e399da3e0c264ea3244234 MD5 · raw file

  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. package org.apache.ws.scout.model.uddi.v2;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlAttribute;
  13. import javax.xml.bind.annotation.XmlType;
  14. /**
  15. * <p>Java class for find_business complex type.
  16. *
  17. * <p>The following schema fragment specifies the expected content contained within this class.
  18. *
  19. * <pre>
  20. * &lt;complexType name="find_business">
  21. * &lt;complexContent>
  22. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  23. * &lt;sequence>
  24. * &lt;element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/>
  25. * &lt;element ref="{urn:uddi-org:api_v2}name" maxOccurs="unbounded" minOccurs="0"/>
  26. * &lt;element ref="{urn:uddi-org:api_v2}identifierBag" minOccurs="0"/>
  27. * &lt;element ref="{urn:uddi-org:api_v2}categoryBag" minOccurs="0"/>
  28. * &lt;element ref="{urn:uddi-org:api_v2}tModelBag" minOccurs="0"/>
  29. * &lt;element ref="{urn:uddi-org:api_v2}discoveryURLs" minOccurs="0"/>
  30. * &lt;/sequence>
  31. * &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  32. * &lt;attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" />
  33. * &lt;/restriction>
  34. * &lt;/complexContent>
  35. * &lt;/complexType>
  36. * </pre>
  37. *
  38. *
  39. */
  40. @XmlAccessorType(XmlAccessType.FIELD)
  41. @XmlType(name = "find_business", propOrder = {
  42. "findQualifiers",
  43. "name",
  44. "identifierBag",
  45. "categoryBag",
  46. "tModelBag",
  47. "discoveryURLs"
  48. })
  49. public class FindBusiness {
  50. protected FindQualifiers findQualifiers;
  51. protected List<Name> name;
  52. protected IdentifierBag identifierBag;
  53. protected CategoryBag categoryBag;
  54. protected TModelBag tModelBag;
  55. protected DiscoveryURLs discoveryURLs;
  56. @XmlAttribute(required = true)
  57. protected String generic;
  58. @XmlAttribute
  59. protected Integer maxRows;
  60. /**
  61. * Gets the value of the findQualifiers property.
  62. *
  63. * @return
  64. * possible object is
  65. * {@link FindQualifiers }
  66. *
  67. */
  68. public FindQualifiers getFindQualifiers() {
  69. return findQualifiers;
  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. * Gets the value of the name property.
  84. *
  85. * <p>
  86. * This accessor method returns a reference to the live list,
  87. * not a snapshot. Therefore any modification you make to the
  88. * returned list will be present inside the JAXB object.
  89. * This is why there is not a <CODE>set</CODE> method for the name property.
  90. *
  91. * <p>
  92. * For example, to add a new item, do as follows:
  93. * <pre>
  94. * getName().add(newItem);
  95. * </pre>
  96. *
  97. *
  98. * <p>
  99. * Objects of the following type(s) are allowed in the list
  100. * {@link Name }
  101. *
  102. *
  103. */
  104. public List<Name> getName() {
  105. if (name == null) {
  106. name = new ArrayList<Name>();
  107. }
  108. return this.name;
  109. }
  110. /**
  111. * Gets the value of the identifierBag property.
  112. *
  113. * @return
  114. * possible object is
  115. * {@link IdentifierBag }
  116. *
  117. */
  118. public IdentifierBag getIdentifierBag() {
  119. return identifierBag;
  120. }
  121. /**
  122. * Sets the value of the identifierBag property.
  123. *
  124. * @param value
  125. * allowed object is
  126. * {@link IdentifierBag }
  127. *
  128. */
  129. public void setIdentifierBag(IdentifierBag value) {
  130. this.identifierBag = value;
  131. }
  132. /**
  133. * Gets the value of the categoryBag property.
  134. *
  135. * @return
  136. * possible object is
  137. * {@link CategoryBag }
  138. *
  139. */
  140. public CategoryBag getCategoryBag() {
  141. return categoryBag;
  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. * Gets the value of the tModelBag property.
  156. *
  157. * @return
  158. * possible object is
  159. * {@link TModelBag }
  160. *
  161. */
  162. public TModelBag getTModelBag() {
  163. return tModelBag;
  164. }
  165. /**
  166. * Sets the value of the tModelBag property.
  167. *
  168. * @param value
  169. * allowed object is
  170. * {@link TModelBag }
  171. *
  172. */
  173. public void setTModelBag(TModelBag value) {
  174. this.tModelBag = value;
  175. }
  176. /**
  177. * Gets the value of the discoveryURLs property.
  178. *
  179. * @return
  180. * possible object is
  181. * {@link DiscoveryURLs }
  182. *
  183. */
  184. public DiscoveryURLs getDiscoveryURLs() {
  185. return discoveryURLs;
  186. }
  187. /**
  188. * Sets the value of the discoveryURLs property.
  189. *
  190. * @param value
  191. * allowed object is
  192. * {@link DiscoveryURLs }
  193. *
  194. */
  195. public void setDiscoveryURLs(DiscoveryURLs value) {
  196. this.discoveryURLs = value;
  197. }
  198. /**
  199. * Gets the value of the generic property.
  200. *
  201. * @return
  202. * possible object is
  203. * {@link String }
  204. *
  205. */
  206. public String getGeneric() {
  207. return generic;
  208. }
  209. /**
  210. * Sets the value of the generic property.
  211. *
  212. * @param value
  213. * allowed object is
  214. * {@link String }
  215. *
  216. */
  217. public void setGeneric(String value) {
  218. this.generic = value;
  219. }
  220. /**
  221. * Gets the value of the maxRows property.
  222. *
  223. * @return
  224. * possible object is
  225. * {@link Integer }
  226. *
  227. */
  228. public Integer getMaxRows() {
  229. return maxRows;
  230. }
  231. /**
  232. * Sets the value of the maxRows property.
  233. *
  234. * @param value
  235. * allowed object is
  236. * {@link Integer }
  237. *
  238. */
  239. public void setMaxRows(Integer value) {
  240. this.maxRows = value;
  241. }
  242. }