1 | |
package org.kuali.rice.krms.api.repository.type; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
import java.util.Collection; |
5 | |
|
6 | |
import javax.xml.bind.annotation.XmlAccessType; |
7 | |
import javax.xml.bind.annotation.XmlAccessorType; |
8 | |
import javax.xml.bind.annotation.XmlAnyElement; |
9 | |
import javax.xml.bind.annotation.XmlElement; |
10 | |
import javax.xml.bind.annotation.XmlRootElement; |
11 | |
import javax.xml.bind.annotation.XmlType; |
12 | |
|
13 | |
import org.apache.commons.lang.StringUtils; |
14 | |
import org.kuali.rice.core.api.CoreConstants; |
15 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
16 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
@XmlRootElement(name = KrmsAttributeDefinition.Constants.ROOT_ELEMENT_NAME) |
26 | |
@XmlAccessorType(XmlAccessType.NONE) |
27 | |
@XmlType(name = KrmsAttributeDefinition.Constants.TYPE_NAME, propOrder = { |
28 | |
KrmsAttributeDefinition.Elements.ID, |
29 | |
KrmsAttributeDefinition.Elements.NAME, |
30 | |
KrmsAttributeDefinition.Elements.NAMESPACE, |
31 | |
KrmsAttributeDefinition.Elements.LABEL, |
32 | |
KrmsAttributeDefinition.Elements.DESCRIPTION, |
33 | |
KrmsAttributeDefinition.Elements.ACTIVE, |
34 | |
KrmsAttributeDefinition.Elements.COMPONENT_NAME, |
35 | |
CoreConstants.CommonElements.VERSION_NUMBER, |
36 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
37 | |
}) |
38 | 8 | public final class KrmsAttributeDefinition extends AbstractDataTransferObject implements KrmsAttributeDefinitionContract { |
39 | |
private static final long serialVersionUID = -6356968810972165031L; |
40 | |
|
41 | |
@XmlElement(name = Elements.ID, required=true) |
42 | |
private final String id; |
43 | |
@XmlElement(name = Elements.NAME, required=true) |
44 | |
private final String name; |
45 | |
@XmlElement(name = Elements.NAMESPACE, required=true) |
46 | |
private final String namespace; |
47 | |
@XmlElement(name = Elements.LABEL, required=false) |
48 | |
private final String label; |
49 | |
@XmlElement(name = Elements.DESCRIPTION, required=false) |
50 | |
private final String description; |
51 | |
@XmlElement(name = Elements.ACTIVE, required=false) |
52 | |
private final boolean active; |
53 | |
@XmlElement(name = Elements.COMPONENT_NAME, required=false) |
54 | |
private final String componentName; |
55 | |
@XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false) |
56 | |
private final Long versionNumber; |
57 | |
|
58 | 13 | @SuppressWarnings("unused") |
59 | |
@XmlAnyElement |
60 | |
private final Collection<org.w3c.dom.Element> _futureElements = null; |
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | 5 | private KrmsAttributeDefinition() { |
66 | 5 | this.id = null; |
67 | 5 | this.name = null; |
68 | 5 | this.namespace = null; |
69 | 5 | this.label = null; |
70 | 5 | this.description = null; |
71 | 5 | this.active = false; |
72 | 5 | this.componentName = null; |
73 | 5 | this.versionNumber = null; |
74 | 5 | } |
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | 8 | private KrmsAttributeDefinition(Builder builder) { |
83 | 8 | this.id = builder.getId(); |
84 | 8 | this.name = builder.getName(); |
85 | 8 | this.namespace = builder.getNamespace(); |
86 | 8 | this.label = builder.getLabel(); |
87 | 8 | this.description = builder.getDescription(); |
88 | 8 | this.active = builder.isActive(); |
89 | 8 | this.componentName = builder.getComponentName(); |
90 | 8 | this.versionNumber = builder.getVersionNumber(); |
91 | 8 | } |
92 | |
|
93 | |
public String getId() { |
94 | 1 | return this.id; |
95 | |
} |
96 | |
|
97 | |
public String getName() { |
98 | 6 | return this.name; |
99 | |
} |
100 | |
|
101 | |
public String getNamespace() { |
102 | 6 | return this.namespace; |
103 | |
} |
104 | |
|
105 | |
public String getLabel() { |
106 | 5 | return this.label; |
107 | |
} |
108 | |
|
109 | |
public String getDescription() { |
110 | 0 | return description; |
111 | |
} |
112 | |
|
113 | |
public boolean isActive() { |
114 | 5 | return this.active; |
115 | |
} |
116 | |
|
117 | |
public String getComponentName() { |
118 | 4 | return this.componentName; |
119 | |
} |
120 | |
|
121 | |
@Override |
122 | |
public Long getVersionNumber() { |
123 | 0 | return versionNumber; |
124 | |
} |
125 | |
|
126 | |
|
127 | |
|
128 | |
|
129 | 6 | public static class Builder implements KrmsAttributeDefinitionContract, ModelBuilder, Serializable { |
130 | |
private static final long serialVersionUID = -2110564370088779631L; |
131 | |
|
132 | |
private String id; |
133 | |
private String name; |
134 | |
private String namespace; |
135 | |
private String label; |
136 | |
private String description; |
137 | |
private boolean active; |
138 | |
private String componentName; |
139 | |
private Long versionNumber; |
140 | |
|
141 | |
|
142 | |
|
143 | |
|
144 | 19 | private Builder(String id, String name, String namespace) { |
145 | 19 | setId(id); |
146 | 17 | setName(name); |
147 | 13 | setNamespace(namespace); |
148 | 10 | setActive(true); |
149 | 10 | } |
150 | |
|
151 | |
public Builder label(String label){ |
152 | 5 | setLabel(label); |
153 | 5 | return this; |
154 | |
} |
155 | |
public Builder componentName(String componentName){ |
156 | 3 | setComponentName(componentName); |
157 | 3 | return this; |
158 | |
} |
159 | |
|
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
public static Builder create(String id, String name, String namespace) { |
169 | 19 | return new Builder(id, name, namespace); |
170 | |
} |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
public static Builder create(KrmsAttributeDefinitionContract contract) { |
179 | 0 | if (contract == null) { |
180 | 0 | throw new IllegalArgumentException("contract is null"); |
181 | |
} |
182 | 0 | Builder builder = new Builder(contract.getId(), contract.getName(), contract.getNamespace()); |
183 | 0 | builder.setActive(contract.isActive()); |
184 | 0 | builder.setLabel(contract.getLabel()); |
185 | 0 | builder.setDescription(contract.getDescription()); |
186 | 0 | builder.setComponentName(contract.getComponentName()); |
187 | 0 | builder.setVersionNumber(contract.getVersionNumber()); |
188 | 0 | return builder; |
189 | |
} |
190 | |
|
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
|
196 | |
|
197 | |
public void setId(String id) { |
198 | 19 | if (null != id && StringUtils.isBlank(id)) { |
199 | 2 | throw new IllegalArgumentException("id must be null or non-blank"); |
200 | |
} |
201 | 17 | this.id = id; |
202 | 17 | } |
203 | |
|
204 | |
public void setName(String name) { |
205 | 17 | if (StringUtils.isBlank(name)) { |
206 | 4 | throw new IllegalArgumentException("name is blank"); |
207 | |
} |
208 | 13 | this.name = name; |
209 | 13 | } |
210 | |
|
211 | |
public void setNamespace(String namespace) { |
212 | 13 | if (StringUtils.isBlank(namespace)) { |
213 | 3 | throw new IllegalArgumentException("namespace is blank"); |
214 | |
} |
215 | 10 | this.namespace = namespace; |
216 | 10 | } |
217 | |
|
218 | |
public void setLabel(String label) { |
219 | 6 | this.label = label; |
220 | 6 | } |
221 | |
|
222 | |
public void setDescription(String description) { |
223 | 0 | this.description = description; |
224 | 0 | } |
225 | |
|
226 | |
|
227 | |
public void setComponentName(String componentName) { |
228 | 4 | this.componentName = componentName; |
229 | 4 | } |
230 | |
|
231 | |
public void setActive(boolean active) { |
232 | 10 | this.active = active; |
233 | 10 | } |
234 | |
|
235 | |
public void setVersionNumber(Long versionNumber){ |
236 | 0 | this.versionNumber = versionNumber; |
237 | 0 | } |
238 | |
|
239 | |
@Override |
240 | |
public String getId() { |
241 | 8 | return id; |
242 | |
} |
243 | |
|
244 | |
@Override |
245 | |
public String getName() { |
246 | 8 | return name; |
247 | |
} |
248 | |
|
249 | |
@Override |
250 | |
public String getNamespace() { |
251 | 8 | return namespace; |
252 | |
} |
253 | |
|
254 | |
@Override |
255 | |
public String getComponentName() { |
256 | 8 | return componentName; |
257 | |
} |
258 | |
|
259 | |
@Override |
260 | |
public String getLabel() { |
261 | 8 | return label; |
262 | |
} |
263 | |
|
264 | |
@Override |
265 | |
public String getDescription() { |
266 | 8 | return description; |
267 | |
} |
268 | |
|
269 | |
@Override |
270 | |
public boolean isActive() { |
271 | 8 | return active; |
272 | |
} |
273 | |
|
274 | |
@Override |
275 | |
public Long getVersionNumber() { |
276 | 8 | return versionNumber; |
277 | |
} |
278 | |
|
279 | |
|
280 | |
|
281 | |
|
282 | |
|
283 | |
|
284 | |
@Override |
285 | |
public KrmsAttributeDefinition build() { |
286 | 8 | return new KrmsAttributeDefinition(this); |
287 | |
} |
288 | |
|
289 | |
} |
290 | |
|
291 | |
|
292 | |
|
293 | |
|
294 | 0 | static class Constants { |
295 | |
final static String ROOT_ELEMENT_NAME = "KrmsAttributeDefinition"; |
296 | |
final static String TYPE_NAME = "KrmsAttributionDefinitionType"; |
297 | |
} |
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | 0 | public static class Elements { |
304 | |
final static String ID = "id"; |
305 | |
final static String NAME = "name"; |
306 | |
final static String NAMESPACE = "namespace"; |
307 | |
final static String LABEL = "label"; |
308 | |
final static String DESCRIPTION = "description"; |
309 | |
final static String COMPONENT_NAME = "componentName"; |
310 | |
final static String ACTIVE = "active"; |
311 | |
} |
312 | |
} |