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