1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.krms.api.repository.term; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.Collection; |
20 | |
|
21 | |
import javax.xml.bind.annotation.XmlAccessType; |
22 | |
import javax.xml.bind.annotation.XmlAccessorType; |
23 | |
import javax.xml.bind.annotation.XmlAnyElement; |
24 | |
import javax.xml.bind.annotation.XmlElement; |
25 | |
import javax.xml.bind.annotation.XmlRootElement; |
26 | |
import javax.xml.bind.annotation.XmlType; |
27 | |
|
28 | |
import org.apache.commons.lang.StringUtils; |
29 | |
import org.apache.commons.lang.builder.EqualsBuilder; |
30 | |
import org.apache.commons.lang.builder.HashCodeBuilder; |
31 | |
import org.apache.commons.lang.builder.ToStringBuilder; |
32 | |
import org.kuali.rice.core.api.CoreConstants; |
33 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
34 | |
import org.kuali.rice.core.api.mo.ModelObjectComplete; |
35 | |
import org.kuali.rice.krms.api.repository.BuilderUtils; |
36 | |
import org.kuali.rice.krms.api.repository.BuilderUtils.Transformer; |
37 | |
import org.kuali.rice.krms.api.repository.rule.RuleDefinition.Builder; |
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
@XmlRootElement(name = TermSpecificationDefinition.Constants.ROOT_ELEMENT_NAME) |
46 | |
@XmlAccessorType(XmlAccessType.NONE) |
47 | |
@XmlType(name = TermSpecificationDefinition.Constants.TYPE_NAME, propOrder = { |
48 | |
TermSpecificationDefinition.Elements.ID, |
49 | |
TermSpecificationDefinition.Elements.CONTEXT_ID, |
50 | |
TermSpecificationDefinition.Elements.NAME, |
51 | |
TermSpecificationDefinition.Elements.TYPE, |
52 | |
CoreConstants.CommonElements.VERSION_NUMBER, |
53 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
54 | |
}) |
55 | 5 | public final class TermSpecificationDefinition implements TermSpecificationDefinitionContract, ModelObjectComplete { |
56 | |
|
57 | |
private static final long serialVersionUID = 1L; |
58 | |
|
59 | |
@XmlElement(name = Elements.ID, required=false) |
60 | |
private final String id; |
61 | |
@XmlElement(name = Elements.CONTEXT_ID, required=true) |
62 | |
private final String contextId; |
63 | |
@XmlElement(name = Elements.NAME, required=true) |
64 | |
private final String name; |
65 | |
@XmlElement(name = Elements.TYPE, required=true) |
66 | |
private final String type; |
67 | |
@XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false) |
68 | |
private final Long versionNumber; |
69 | |
|
70 | 13 | @SuppressWarnings("unused") |
71 | |
@XmlAnyElement |
72 | |
private final Collection<org.w3c.dom.Element> _futureElements = null; |
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | 8 | private TermSpecificationDefinition() { |
78 | 8 | id = null; |
79 | 8 | contextId = null; |
80 | 8 | name = null; |
81 | 8 | type = null; |
82 | 8 | versionNumber = null; |
83 | 8 | } |
84 | |
|
85 | |
|
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | 5 | private TermSpecificationDefinition(Builder b) { |
91 | 5 | id = b.getId(); |
92 | 5 | contextId = b.getContextId(); |
93 | 5 | name = b.getName(); |
94 | 5 | type = b.getType(); |
95 | 5 | versionNumber = b.getVersionNumber(); |
96 | 5 | } |
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | 3 | public static class Builder implements TermSpecificationDefinitionContract, ModelBuilder, Serializable { |
104 | |
|
105 | |
private static final long serialVersionUID = 1L; |
106 | |
|
107 | |
private String termSpecificationId; |
108 | |
private String contextId; |
109 | |
private String name; |
110 | |
private String type; |
111 | |
private Long versionNumber; |
112 | |
|
113 | |
private static final String NON_NULL_NON_EMPTY_ERROR = " must be non-null and must contain non-whitespace chars"; |
114 | |
|
115 | |
|
116 | |
|
117 | |
|
118 | |
public static final Transformer<TermSpecificationDefinitionContract, TermSpecificationDefinition.Builder> |
119 | 1 | toBuilder = new BuilderUtils.Transformer<TermSpecificationDefinitionContract, TermSpecificationDefinition.Builder>() { |
120 | |
public TermSpecificationDefinition.Builder transform(TermSpecificationDefinitionContract input) { |
121 | 0 | return TermSpecificationDefinition.Builder.create(input); |
122 | |
} |
123 | |
}; |
124 | |
|
125 | 8 | private Builder(String termSpecificationId, String contextId, String name, String type) { |
126 | |
|
127 | 8 | setId(termSpecificationId); |
128 | 8 | setContextId(contextId); |
129 | 5 | setName(name); |
130 | 5 | setType(type); |
131 | 5 | } |
132 | |
|
133 | |
|
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | |
|
144 | |
|
145 | |
public static Builder create(String termSpecificationId, String contextId, String name, String type) { |
146 | 8 | return new Builder(termSpecificationId, contextId, name, type); |
147 | |
} |
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
|
155 | |
public static Builder create(TermSpecificationDefinitionContract termSpecification) { |
156 | 0 | if (termSpecification == null) throw new IllegalArgumentException("termSpecification must be non-null"); |
157 | 0 | Builder builder =new Builder(termSpecification.getId(), |
158 | |
termSpecification.getContextId(), |
159 | |
termSpecification.getName(), |
160 | |
termSpecification.getType()); |
161 | 0 | builder.setVersionNumber(termSpecification.getVersionNumber()); |
162 | 0 | return builder; |
163 | |
} |
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | |
|
172 | |
public void setId(String termSpecificationId) { |
173 | 8 | if (termSpecificationId != null && StringUtils.isBlank(termSpecificationId)) |
174 | 0 | throw new IllegalArgumentException("termSpecificationId must contain non-whitespace chars"); |
175 | 8 | this.termSpecificationId = termSpecificationId; |
176 | 8 | } |
177 | |
|
178 | |
|
179 | |
|
180 | |
|
181 | |
public void setContextId(String contextId) { |
182 | 8 | if (StringUtils.isBlank(contextId)) { |
183 | 3 | throw new IllegalArgumentException("contextId" + NON_NULL_NON_EMPTY_ERROR); |
184 | |
} |
185 | 5 | this.contextId = contextId; |
186 | 5 | } |
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
public void setName(String name) { |
192 | 5 | if (StringUtils.isBlank(name)) { |
193 | 0 | throw new IllegalArgumentException("name" + NON_NULL_NON_EMPTY_ERROR); |
194 | |
} |
195 | 5 | this.name = name; |
196 | 5 | } |
197 | |
|
198 | |
|
199 | |
|
200 | |
public void setType(String type) { |
201 | 5 | if (StringUtils.isBlank(type)) { |
202 | 0 | throw new IllegalArgumentException("type" + NON_NULL_NON_EMPTY_ERROR); |
203 | |
} |
204 | 5 | this.type = type; |
205 | 5 | } |
206 | |
|
207 | |
|
208 | |
|
209 | |
|
210 | |
public void setVersionNumber(Long versionNumber){ |
211 | 0 | this.versionNumber = versionNumber; |
212 | 0 | } |
213 | |
|
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
@Override |
220 | |
public String getId() { |
221 | 5 | return this.termSpecificationId; |
222 | |
} |
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
@Override |
228 | |
public String getContextId() { |
229 | 5 | return this.contextId; |
230 | |
} |
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
@Override |
236 | |
public String getName() { |
237 | 5 | return this.name; |
238 | |
} |
239 | |
|
240 | |
|
241 | |
|
242 | |
|
243 | |
@Override |
244 | |
public String getType() { |
245 | 5 | return this.type; |
246 | |
} |
247 | |
|
248 | |
|
249 | |
|
250 | |
|
251 | |
@Override |
252 | |
public Long getVersionNumber() { |
253 | 5 | return this.versionNumber; |
254 | |
} |
255 | |
|
256 | |
|
257 | |
|
258 | |
|
259 | |
|
260 | |
@Override |
261 | |
public TermSpecificationDefinition build() { |
262 | 5 | return new TermSpecificationDefinition(this); |
263 | |
} |
264 | |
} |
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
|
270 | |
@Override |
271 | |
public String getId() { |
272 | 1 | return id; |
273 | |
} |
274 | |
|
275 | |
|
276 | |
|
277 | |
|
278 | |
|
279 | |
|
280 | |
@Override |
281 | |
public String getContextId() { |
282 | 1 | return contextId; |
283 | |
} |
284 | |
|
285 | |
|
286 | |
|
287 | |
|
288 | |
@Override |
289 | |
public String getName() { |
290 | 1 | return name; |
291 | |
} |
292 | |
|
293 | |
|
294 | |
|
295 | |
|
296 | |
@Override |
297 | |
public String getType() { |
298 | 1 | return type; |
299 | |
} |
300 | |
|
301 | |
|
302 | |
|
303 | |
|
304 | |
@Override |
305 | |
public Long getVersionNumber() { |
306 | 0 | return versionNumber; |
307 | |
} |
308 | |
|
309 | |
|
310 | |
|
311 | |
|
312 | |
@Override |
313 | |
public boolean equals(Object obj) { |
314 | 4 | if (obj == null) return false; |
315 | 4 | return EqualsBuilder.reflectionEquals(this, obj, Constants.HASH_CODE_EQUALS_EXCLUDE); |
316 | |
} |
317 | |
|
318 | |
|
319 | |
|
320 | |
|
321 | |
@Override |
322 | |
public int hashCode() { |
323 | 4 | return HashCodeBuilder.reflectionHashCode(this, Constants.HASH_CODE_EQUALS_EXCLUDE); |
324 | |
} |
325 | |
|
326 | |
|
327 | |
|
328 | |
|
329 | |
@Override |
330 | |
public String toString() { |
331 | 0 | return ToStringBuilder.reflectionToString(this); |
332 | |
} |
333 | |
|
334 | |
|
335 | |
|
336 | |
|
337 | 0 | static class Constants { |
338 | |
final static String ROOT_ELEMENT_NAME = "TermSpecification"; |
339 | |
final static String TYPE_NAME = "TermSpecificationType"; |
340 | 1 | final static String[] HASH_CODE_EQUALS_EXCLUDE = { CoreConstants.CommonElements.FUTURE_ELEMENTS }; |
341 | |
} |
342 | |
|
343 | 0 | static class Elements { |
344 | |
public static final String ID = "id"; |
345 | |
public static final String CONTEXT_ID = "contextId"; |
346 | |
public static final String NAME = "name"; |
347 | |
public static final String TYPE = "type"; |
348 | |
} |
349 | |
|
350 | |
|
351 | |
} |