Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
BusinessEntityExt |
|
| 0.0;0 |
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 java.util.ArrayList; | |
12 | import java.util.List; | |
13 | ||
14 | import javax.xml.bind.annotation.XmlAccessType; | |
15 | import javax.xml.bind.annotation.XmlAccessorType; | |
16 | import javax.xml.bind.annotation.XmlAnyElement; | |
17 | import javax.xml.bind.annotation.XmlElement; | |
18 | import javax.xml.bind.annotation.XmlType; | |
19 | ||
20 | ||
21 | /** | |
22 | * <p>Java class for businessEntityExt complex type. | |
23 | * | |
24 | * <p>The following schema fragment specifies the expected content contained within this class. | |
25 | * | |
26 | * <pre> | |
27 | * <complexType name="businessEntityExt"> | |
28 | * <complexContent> | |
29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
30 | * <sequence> | |
31 | * <element ref="{urn:uddi-org:api_v2}businessEntity"/> | |
32 | * <any/> | |
33 | * </sequence> | |
34 | * </restriction> | |
35 | * </complexContent> | |
36 | * </complexType> | |
37 | * </pre> | |
38 | * | |
39 | * | |
40 | */ | |
41 | @XmlAccessorType(XmlAccessType.FIELD) | |
42 | @XmlType(name = "businessEntityExt", propOrder = { | |
43 | "businessEntity", | |
44 | "any" | |
45 | }) | |
46 | 0 | public class BusinessEntityExt { |
47 | ||
48 | @XmlElement(required = true) | |
49 | protected BusinessEntity businessEntity; | |
50 | @XmlAnyElement(lax = true) | |
51 | protected List<Object> any; | |
52 | ||
53 | /** | |
54 | * Gets the value of the businessEntity property. | |
55 | * | |
56 | * @return | |
57 | * possible object is | |
58 | * {@link BusinessEntity } | |
59 | * | |
60 | */ | |
61 | public BusinessEntity getBusinessEntity() { | |
62 | 0 | return businessEntity; |
63 | } | |
64 | ||
65 | /** | |
66 | * Sets the value of the businessEntity property. | |
67 | * | |
68 | * @param value | |
69 | * allowed object is | |
70 | * {@link BusinessEntity } | |
71 | * | |
72 | */ | |
73 | public void setBusinessEntity(BusinessEntity value) { | |
74 | 0 | this.businessEntity = value; |
75 | 0 | } |
76 | ||
77 | /** | |
78 | * Gets the value of the any property. | |
79 | * | |
80 | * <p> | |
81 | * This accessor method returns a reference to the live list, | |
82 | * not a snapshot. Therefore any modification you make to the | |
83 | * returned list will be present inside the JAXB object. | |
84 | * This is why there is not a <CODE>set</CODE> method for the any property. | |
85 | * | |
86 | * <p> | |
87 | * For example, to add a new item, do as follows: | |
88 | * <pre> | |
89 | * getAny().add(newItem); | |
90 | * </pre> | |
91 | * | |
92 | * | |
93 | * <p> | |
94 | * Objects of the following type(s) are allowed in the list | |
95 | * {@link Object } | |
96 | * | |
97 | * | |
98 | */ | |
99 | public List<Object> getAny() { | |
100 | 0 | if (any == null) { |
101 | 0 | any = new ArrayList<Object>(); |
102 | } | |
103 | 0 | return this.any; |
104 | } | |
105 | ||
106 | } |