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