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.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19 * <p>Java class for businessList complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="businessList">
25 * <complexContent>
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27 * <sequence>
28 * <element ref="{urn:uddi-org:api_v2}businessInfos"/>
29 * </sequence>
30 * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31 * <attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32 * <attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
33 * </restriction>
34 * </complexContent>
35 * </complexType>
36 * </pre>
37 *
38 *
39 */
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "businessList", propOrder = {
42 "businessInfos"
43 })
44 public class BusinessList {
45
46 @XmlElement(required = true)
47 protected BusinessInfos businessInfos;
48 @XmlAttribute(required = true)
49 protected String generic;
50 @XmlAttribute(required = true)
51 protected String operator;
52 @XmlAttribute
53 protected Truncated truncated;
54
55 /**
56 * Gets the value of the businessInfos property.
57 *
58 * @return
59 * possible object is
60 * {@link BusinessInfos }
61 *
62 */
63 public BusinessInfos getBusinessInfos() {
64 return businessInfos;
65 }
66
67 /**
68 * Sets the value of the businessInfos property.
69 *
70 * @param value
71 * allowed object is
72 * {@link BusinessInfos }
73 *
74 */
75 public void setBusinessInfos(BusinessInfos value) {
76 this.businessInfos = value;
77 }
78
79 /**
80 * Gets the value of the generic property.
81 *
82 * @return
83 * possible object is
84 * {@link String }
85 *
86 */
87 public String getGeneric() {
88 return generic;
89 }
90
91 /**
92 * Sets the value of the generic property.
93 *
94 * @param value
95 * allowed object is
96 * {@link String }
97 *
98 */
99 public void setGeneric(String value) {
100 this.generic = value;
101 }
102
103 /**
104 * Gets the value of the operator property.
105 *
106 * @return
107 * possible object is
108 * {@link String }
109 *
110 */
111 public String getOperator() {
112 return operator;
113 }
114
115 /**
116 * Sets the value of the operator property.
117 *
118 * @param value
119 * allowed object is
120 * {@link String }
121 *
122 */
123 public void setOperator(String value) {
124 this.operator = value;
125 }
126
127 /**
128 * Gets the value of the truncated property.
129 *
130 * @return
131 * possible object is
132 * {@link Truncated }
133 *
134 */
135 public Truncated getTruncated() {
136 return truncated;
137 }
138
139 /**
140 * Sets the value of the truncated property.
141 *
142 * @param value
143 * allowed object is
144 * {@link Truncated }
145 *
146 */
147 public void setTruncated(Truncated value) {
148 this.truncated = value;
149 }
150
151 }