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