/apache-juddi/uddi-ws/src/main/java/org/uddi/api_v3/BusinessEntity.java

# · Java · 319 lines · 93 code · 21 blank · 205 comment · 6 complexity · 62910f16408e9dbb21a3f9802b86bb7a MD5 · raw file

  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_v3;
  18. import java.io.Serializable;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import javax.xml.bind.annotation.XmlAccessType;
  22. import javax.xml.bind.annotation.XmlAccessorType;
  23. import javax.xml.bind.annotation.XmlAttribute;
  24. import javax.xml.bind.annotation.XmlElement;
  25. import javax.xml.bind.annotation.XmlTransient;
  26. import javax.xml.bind.annotation.XmlType;
  27. import org.w3._2000._09.xmldsig_.SignatureType;
  28. /**
  29. * <p>Java class for businessEntity complex type.
  30. *
  31. * <p>The following schema fragment specifies the expected content contained within this class.
  32. *
  33. * <pre>
  34. * &lt;complexType name="businessEntity">
  35. * &lt;complexContent>
  36. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  37. * &lt;sequence>
  38. * &lt;element ref="{urn:uddi-org:api_v3}discoveryURLs" minOccurs="0"/>
  39. * &lt;element ref="{urn:uddi-org:api_v3}name" maxOccurs="unbounded"/>
  40. * &lt;element ref="{urn:uddi-org:api_v3}description" maxOccurs="unbounded" minOccurs="0"/>
  41. * &lt;element ref="{urn:uddi-org:api_v3}contacts" minOccurs="0"/>
  42. * &lt;element ref="{urn:uddi-org:api_v3}businessServices" minOccurs="0"/>
  43. * &lt;element ref="{urn:uddi-org:api_v3}identifierBag" minOccurs="0"/>
  44. * &lt;element ref="{urn:uddi-org:api_v3}categoryBag" minOccurs="0"/>
  45. * &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded" minOccurs="0"/>
  46. * &lt;/sequence>
  47. * &lt;attribute name="businessKey" type="{urn:uddi-org:api_v3}businessKey" />
  48. * &lt;/restriction>
  49. * &lt;/complexContent>
  50. * &lt;/complexType>
  51. * </pre>
  52. *
  53. *
  54. */
  55. @XmlAccessorType(XmlAccessType.FIELD)
  56. @XmlType(name = "businessEntity", propOrder = {
  57. "discoveryURLs",
  58. "name",
  59. "description",
  60. "contacts",
  61. "businessServices",
  62. "identifierBag",
  63. "categoryBag",
  64. "signature"
  65. })
  66. public class BusinessEntity implements Serializable{
  67. @XmlTransient
  68. private static final long serialVersionUID = -8418387236934632049L;
  69. protected DiscoveryURLs discoveryURLs;
  70. @XmlElement(required = true)
  71. protected List<Name> name;
  72. protected List<Description> description;
  73. protected Contacts contacts;
  74. protected BusinessServices businessServices;
  75. protected IdentifierBag identifierBag;
  76. protected CategoryBag categoryBag;
  77. @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
  78. protected List<SignatureType> signature;
  79. @XmlAttribute
  80. protected String businessKey;
  81. /**
  82. * Gets the value of the discoveryURLs property.
  83. *
  84. * @return
  85. * possible object is
  86. * {@link DiscoveryURLs }
  87. *
  88. */
  89. public DiscoveryURLs getDiscoveryURLs() {
  90. return discoveryURLs;
  91. }
  92. /**
  93. * Sets the value of the discoveryURLs property.
  94. *
  95. * @param value
  96. * allowed object is
  97. * {@link DiscoveryURLs }
  98. *
  99. */
  100. public void setDiscoveryURLs(DiscoveryURLs value) {
  101. this.discoveryURLs = value;
  102. }
  103. /**
  104. * Gets the value of the name property.
  105. *
  106. * <p>
  107. * This accessor method returns a reference to the live list,
  108. * not a snapshot. Therefore any modification you make to the
  109. * returned list will be present inside the JAXB object.
  110. * This is why there is not a <CODE>set</CODE> method for the name property.
  111. *
  112. * <p>
  113. * For example, to add a new item, do as follows:
  114. * <pre>
  115. * getName().add(newItem);
  116. * </pre>
  117. *
  118. *
  119. * <p>
  120. * Objects of the following type(s) are allowed in the list
  121. * {@link Name }
  122. *
  123. *
  124. */
  125. public List<Name> getName() {
  126. if (name == null) {
  127. name = new ArrayList<Name>();
  128. }
  129. return this.name;
  130. }
  131. /**
  132. * Gets the value of the description property.
  133. *
  134. * <p>
  135. * This accessor method returns a reference to the live list,
  136. * not a snapshot. Therefore any modification you make to the
  137. * returned list will be present inside the JAXB object.
  138. * This is why there is not a <CODE>set</CODE> method for the description property.
  139. *
  140. * <p>
  141. * For example, to add a new item, do as follows:
  142. * <pre>
  143. * getDescription().add(newItem);
  144. * </pre>
  145. *
  146. *
  147. * <p>
  148. * Objects of the following type(s) are allowed in the list
  149. * {@link Description }
  150. *
  151. *
  152. */
  153. public List<Description> getDescription() {
  154. if (description == null) {
  155. description = new ArrayList<Description>();
  156. }
  157. return this.description;
  158. }
  159. /**
  160. * Gets the value of the contacts property.
  161. *
  162. * @return
  163. * possible object is
  164. * {@link Contacts }
  165. *
  166. */
  167. public Contacts getContacts() {
  168. return contacts;
  169. }
  170. /**
  171. * Sets the value of the contacts property.
  172. *
  173. * @param value
  174. * allowed object is
  175. * {@link Contacts }
  176. *
  177. */
  178. public void setContacts(Contacts value) {
  179. this.contacts = value;
  180. }
  181. /**
  182. * Gets the value of the businessServices property.
  183. *
  184. * @return
  185. * possible object is
  186. * {@link BusinessServices }
  187. *
  188. */
  189. public BusinessServices getBusinessServices() {
  190. return businessServices;
  191. }
  192. /**
  193. * Sets the value of the businessServices property.
  194. *
  195. * @param value
  196. * allowed object is
  197. * {@link BusinessServices }
  198. *
  199. */
  200. public void setBusinessServices(BusinessServices value) {
  201. this.businessServices = value;
  202. }
  203. /**
  204. * Gets the value of the identifierBag property.
  205. *
  206. * @return
  207. * possible object is
  208. * {@link IdentifierBag }
  209. *
  210. */
  211. public IdentifierBag getIdentifierBag() {
  212. return identifierBag;
  213. }
  214. /**
  215. * Sets the value of the identifierBag property.
  216. *
  217. * @param value
  218. * allowed object is
  219. * {@link IdentifierBag }
  220. *
  221. */
  222. public void setIdentifierBag(IdentifierBag value) {
  223. this.identifierBag = value;
  224. }
  225. /**
  226. * Gets the value of the categoryBag property.
  227. *
  228. * @return
  229. * possible object is
  230. * {@link CategoryBag }
  231. *
  232. */
  233. public CategoryBag getCategoryBag() {
  234. return categoryBag;
  235. }
  236. /**
  237. * Sets the value of the categoryBag property.
  238. *
  239. * @param value
  240. * allowed object is
  241. * {@link CategoryBag }
  242. *
  243. */
  244. public void setCategoryBag(CategoryBag value) {
  245. this.categoryBag = value;
  246. }
  247. /**
  248. * Gets the value of the signature property.
  249. *
  250. * <p>
  251. * This accessor method returns a reference to the live list,
  252. * not a snapshot. Therefore any modification you make to the
  253. * returned list will be present inside the JAXB object.
  254. * This is why there is not a <CODE>set</CODE> method for the signature property.
  255. *
  256. * <p>
  257. * For example, to add a new item, do as follows:
  258. * <pre>
  259. * getSignature().add(newItem);
  260. * </pre>
  261. *
  262. *
  263. * <p>
  264. * Objects of the following type(s) are allowed in the list
  265. * {@link SignatureType }
  266. *
  267. *
  268. */
  269. public List<SignatureType> getSignature() {
  270. if (signature == null) {
  271. signature = new ArrayList<SignatureType>();
  272. }
  273. return this.signature;
  274. }
  275. /**
  276. * Gets the value of the businessKey property.
  277. *
  278. * @return
  279. * possible object is
  280. * {@link String }
  281. *
  282. */
  283. public String getBusinessKey() {
  284. return businessKey;
  285. }
  286. /**
  287. * Sets the value of the businessKey property.
  288. *
  289. * @param value
  290. * allowed object is
  291. * {@link String }
  292. *
  293. */
  294. public void setBusinessKey(String value) {
  295. this.businessKey = value;
  296. }
  297. }
  298.