1 | |
package org.kuali.rice.krms.api.repository.category; |
2 | |
|
3 | |
import org.apache.commons.lang.StringUtils; |
4 | |
import org.kuali.rice.core.api.CoreConstants; |
5 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
6 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
7 | |
import org.w3c.dom.Element; |
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 | |
import java.io.Serializable; |
16 | |
import java.util.Collection; |
17 | |
|
18 | |
@XmlRootElement(name = CategoryDefinition.Constants.ROOT_ELEMENT_NAME) |
19 | |
@XmlAccessorType(XmlAccessType.NONE) |
20 | |
@XmlType(name = CategoryDefinition.Constants.TYPE_NAME, propOrder = { |
21 | |
CategoryDefinition.Elements.ID, |
22 | |
CategoryDefinition.Elements.NAME, |
23 | |
CategoryDefinition.Elements.NAMESPACE, |
24 | |
CoreConstants.CommonElements.VERSION_NUMBER, |
25 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
26 | |
}) |
27 | 10 | public class CategoryDefinition extends AbstractDataTransferObject implements CategoryDefinitionContract { |
28 | |
|
29 | |
private static final long serialVersionUID = -4748818967880857017L; |
30 | |
|
31 | |
@XmlElement(name = Elements.ID, required=true) |
32 | |
private String id; |
33 | |
@XmlElement(name = Elements.NAME, required=true) |
34 | |
private String name; |
35 | |
@XmlElement(name = Elements.NAMESPACE, required=true) |
36 | |
private String namespace; |
37 | |
@XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false) |
38 | |
private final Long versionNumber; |
39 | |
|
40 | 16 | @SuppressWarnings("unused") |
41 | |
@XmlAnyElement |
42 | |
private final Collection<Element> _futureElements = null; |
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | 6 | private CategoryDefinition() { |
48 | 6 | this.id = null; |
49 | 6 | this.name = null; |
50 | 6 | this.namespace = null; |
51 | 6 | this.versionNumber = null; |
52 | 6 | } |
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | 10 | private CategoryDefinition(Builder builder) { |
61 | 10 | this.id = builder.getId(); |
62 | 10 | this.name = builder.getName(); |
63 | 10 | this.namespace = builder.getNamespace(); |
64 | 10 | this.versionNumber = builder.getVersionNumber(); |
65 | 10 | } |
66 | |
|
67 | |
public String getId() { |
68 | 4 | return this.id; |
69 | |
} |
70 | |
|
71 | |
public String getName() { |
72 | 4 | return this.name; |
73 | |
} |
74 | |
|
75 | |
public String getNamespace() { |
76 | 4 | return this.namespace; |
77 | |
} |
78 | |
|
79 | |
@Override |
80 | |
public Long getVersionNumber() { |
81 | 2 | return versionNumber; |
82 | |
} |
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | 4 | public static class Builder implements CategoryDefinitionContract, ModelBuilder, Serializable { |
88 | |
|
89 | |
private static final long serialVersionUID = -5775478956373560840L; |
90 | |
|
91 | |
private String id; |
92 | |
private String name; |
93 | |
private String namespace; |
94 | |
private Long versionNumber; |
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | 20 | private Builder(String id, String name, String namespace) { |
100 | 20 | setId(id); |
101 | 19 | setName(name); |
102 | 17 | setNamespace(namespace); |
103 | 16 | } |
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
public static Builder create(String id, String name, String namespace) { |
115 | 6 | return new Builder(id, name, namespace); |
116 | |
} |
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
public static Builder create(CategoryDefinitionContract category) { |
125 | 14 | if (category == null) { |
126 | 0 | throw new IllegalArgumentException("contract is null"); |
127 | |
} |
128 | 14 | Builder builder = new Builder(category.getId(), category.getName(), category.getNamespace()); |
129 | 14 | builder.setVersionNumber(category.getVersionNumber()); |
130 | 14 | return builder; |
131 | |
} |
132 | |
|
133 | |
|
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
public void setId(String id) { |
140 | 20 | if (null != id && StringUtils.isBlank(id)) { |
141 | 1 | throw new IllegalArgumentException("id must be null or non-blank"); |
142 | |
} |
143 | 19 | this.id = id; |
144 | 19 | } |
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | |
public void setName(String name) { |
155 | 19 | if (StringUtils.isBlank(name)) { |
156 | 2 | throw new IllegalArgumentException("name is blank"); |
157 | |
} |
158 | 17 | this.name = name; |
159 | 17 | } |
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
public void setNamespace(String namespace) { |
170 | 17 | if (StringUtils.isBlank(namespace)) { |
171 | 1 | throw new IllegalArgumentException("namespace is blank"); |
172 | |
} |
173 | 16 | this.namespace = namespace; |
174 | 16 | } |
175 | |
|
176 | |
public void setVersionNumber(Long versionNumber){ |
177 | 14 | this.versionNumber = versionNumber; |
178 | 14 | } |
179 | |
|
180 | |
@Override |
181 | |
public String getId() { |
182 | 16 | return this.id; |
183 | |
} |
184 | |
|
185 | |
@Override |
186 | |
public String getName() { |
187 | 16 | return this.name; |
188 | |
} |
189 | |
|
190 | |
@Override |
191 | |
public String getNamespace() { |
192 | 16 | return this.namespace; |
193 | |
} |
194 | |
|
195 | |
@Override |
196 | |
public Long getVersionNumber() { |
197 | 16 | return this.versionNumber; |
198 | |
} |
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
@Override |
206 | |
public CategoryDefinition build() { |
207 | 10 | return new CategoryDefinition(this); |
208 | |
} |
209 | |
|
210 | |
} |
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | 0 | static class Constants { |
216 | |
final static String ROOT_ELEMENT_NAME = "category"; |
217 | |
final static String TYPE_NAME = "CategoryType"; |
218 | |
} |
219 | |
|
220 | |
|
221 | |
|
222 | |
|
223 | |
|
224 | 0 | public static class Elements { |
225 | |
final static String ID = "id"; |
226 | |
final static String NAME = "name"; |
227 | |
final static String NAMESPACE = "namespace"; |
228 | |
} |
229 | |
} |
230 | |
|
231 | |
|