Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FindBinding |
|
| 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 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 find_binding complex type. | |
20 | * | |
21 | * <p>The following schema fragment specifies the expected content contained within this class. | |
22 | * | |
23 | * <pre> | |
24 | * <complexType name="find_binding"> | |
25 | * <complexContent> | |
26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
27 | * <sequence> | |
28 | * <element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/> | |
29 | * <element ref="{urn:uddi-org:api_v2}tModelBag"/> | |
30 | * </sequence> | |
31 | * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
32 | * <attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" /> | |
33 | * <attribute name="serviceKey" use="required" type="{urn:uddi-org:api_v2}serviceKey" /> | |
34 | * </restriction> | |
35 | * </complexContent> | |
36 | * </complexType> | |
37 | * </pre> | |
38 | * | |
39 | * | |
40 | */ | |
41 | @XmlAccessorType(XmlAccessType.FIELD) | |
42 | @XmlType(name = "find_binding", propOrder = { | |
43 | "findQualifiers", | |
44 | "tModelBag" | |
45 | }) | |
46 | 0 | public class FindBinding { |
47 | ||
48 | protected FindQualifiers findQualifiers; | |
49 | @XmlElement(required = true) | |
50 | protected TModelBag tModelBag; | |
51 | @XmlAttribute(required = true) | |
52 | protected String generic; | |
53 | @XmlAttribute | |
54 | protected Integer maxRows; | |
55 | @XmlAttribute(required = true) | |
56 | protected String serviceKey; | |
57 | ||
58 | /** | |
59 | * Gets the value of the findQualifiers property. | |
60 | * | |
61 | * @return | |
62 | * possible object is | |
63 | * {@link FindQualifiers } | |
64 | * | |
65 | */ | |
66 | public FindQualifiers getFindQualifiers() { | |
67 | 0 | return findQualifiers; |
68 | } | |
69 | ||
70 | /** | |
71 | * Sets the value of the findQualifiers property. | |
72 | * | |
73 | * @param value | |
74 | * allowed object is | |
75 | * {@link FindQualifiers } | |
76 | * | |
77 | */ | |
78 | public void setFindQualifiers(FindQualifiers value) { | |
79 | 0 | this.findQualifiers = value; |
80 | 0 | } |
81 | ||
82 | /** | |
83 | * Gets the value of the tModelBag property. | |
84 | * | |
85 | * @return | |
86 | * possible object is | |
87 | * {@link TModelBag } | |
88 | * | |
89 | */ | |
90 | public TModelBag getTModelBag() { | |
91 | 0 | return tModelBag; |
92 | } | |
93 | ||
94 | /** | |
95 | * Sets the value of the tModelBag property. | |
96 | * | |
97 | * @param value | |
98 | * allowed object is | |
99 | * {@link TModelBag } | |
100 | * | |
101 | */ | |
102 | public void setTModelBag(TModelBag value) { | |
103 | 0 | this.tModelBag = value; |
104 | 0 | } |
105 | ||
106 | /** | |
107 | * Gets the value of the generic property. | |
108 | * | |
109 | * @return | |
110 | * possible object is | |
111 | * {@link String } | |
112 | * | |
113 | */ | |
114 | public String getGeneric() { | |
115 | 0 | return generic; |
116 | } | |
117 | ||
118 | /** | |
119 | * Sets the value of the generic property. | |
120 | * | |
121 | * @param value | |
122 | * allowed object is | |
123 | * {@link String } | |
124 | * | |
125 | */ | |
126 | public void setGeneric(String value) { | |
127 | 0 | this.generic = value; |
128 | 0 | } |
129 | ||
130 | /** | |
131 | * Gets the value of the maxRows property. | |
132 | * | |
133 | * @return | |
134 | * possible object is | |
135 | * {@link Integer } | |
136 | * | |
137 | */ | |
138 | public Integer getMaxRows() { | |
139 | 0 | return maxRows; |
140 | } | |
141 | ||
142 | /** | |
143 | * Sets the value of the maxRows property. | |
144 | * | |
145 | * @param value | |
146 | * allowed object is | |
147 | * {@link Integer } | |
148 | * | |
149 | */ | |
150 | public void setMaxRows(Integer value) { | |
151 | 0 | this.maxRows = value; |
152 | 0 | } |
153 | ||
154 | /** | |
155 | * Gets the value of the serviceKey property. | |
156 | * | |
157 | * @return | |
158 | * possible object is | |
159 | * {@link String } | |
160 | * | |
161 | */ | |
162 | public String getServiceKey() { | |
163 | 0 | return serviceKey; |
164 | } | |
165 | ||
166 | /** | |
167 | * Sets the value of the serviceKey property. | |
168 | * | |
169 | * @param value | |
170 | * allowed object is | |
171 | * {@link String } | |
172 | * | |
173 | */ | |
174 | public void setServiceKey(String value) { | |
175 | 0 | this.serviceKey = value; |
176 | 0 | } |
177 | ||
178 | } |