Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
WorkflowAttributeDefinition |
|
| 1.6818181818181819;1.682 | ||||
WorkflowAttributeDefinition$1 |
|
| 1.6818181818181819;1.682 | ||||
WorkflowAttributeDefinition$Builder |
|
| 1.6818181818181819;1.682 | ||||
WorkflowAttributeDefinition$Constants |
|
| 1.6818181818181819;1.682 | ||||
WorkflowAttributeDefinition$Elements |
|
| 1.6818181818181819;1.682 |
1 | /** | |
2 | * Copyright 2005-2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl2.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.rice.kew.api.document.attribute; | |
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.HashMap; | |
23 | import java.util.List; | |
24 | import java.util.Map; | |
25 | ||
26 | import javax.xml.bind.annotation.XmlAccessType; | |
27 | import javax.xml.bind.annotation.XmlAccessorType; | |
28 | import javax.xml.bind.annotation.XmlAnyElement; | |
29 | import javax.xml.bind.annotation.XmlElement; | |
30 | import javax.xml.bind.annotation.XmlElementWrapper; | |
31 | import javax.xml.bind.annotation.XmlRootElement; | |
32 | import javax.xml.bind.annotation.XmlType; | |
33 | ||
34 | import org.apache.commons.lang.StringUtils; | |
35 | import org.kuali.rice.core.api.CoreConstants; | |
36 | import org.kuali.rice.core.api.mo.AbstractDataTransferObject; | |
37 | import org.kuali.rice.core.api.mo.ModelBuilder; | |
38 | import org.kuali.rice.kew.api.document.PropertyDefinition; | |
39 | import org.w3c.dom.Element; | |
40 | ||
41 | /** | |
42 | * Encapsulates parameters that can be sent to an attribute when using that attribute to perform various operations | |
43 | * (primarily, in the case of workflow attributes, during the generation of XML). | |
44 | * | |
45 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
46 | */ | |
47 | @XmlRootElement(name = WorkflowAttributeDefinition.Constants.ROOT_ELEMENT_NAME) | |
48 | @XmlAccessorType(XmlAccessType.NONE) | |
49 | @XmlType(name = WorkflowAttributeDefinition.Constants.TYPE_NAME, propOrder = { | |
50 | WorkflowAttributeDefinition.Elements.ATTRIBUTE_NAME, | |
51 | WorkflowAttributeDefinition.Elements.PARAMETERS, | |
52 | WorkflowAttributeDefinition.Elements.PROPERTY_DEFINITIONS, | |
53 | CoreConstants.CommonElements.FUTURE_ELEMENTS | |
54 | }) | |
55 | 0 | public final class WorkflowAttributeDefinition extends AbstractDataTransferObject { |
56 | ||
57 | @XmlElement(name = Elements.ATTRIBUTE_NAME, required = true) | |
58 | private final String attributeName; | |
59 | ||
60 | @XmlElementWrapper(name = Elements.PARAMETERS, required = false) | |
61 | @XmlElement(name = Elements.PARAMETER, required = false) | |
62 | private final List<String> parameters; | |
63 | ||
64 | @XmlElementWrapper(name = Elements.PROPERTY_DEFINITIONS, required = false) | |
65 | @XmlElement(name = Elements.PROPERTY_DEFINITION, required = false) | |
66 | private final List<PropertyDefinition> propertyDefinitions; | |
67 | ||
68 | 0 | @SuppressWarnings("unused") |
69 | @XmlAnyElement | |
70 | private final Collection<Element> _futureElements = null; | |
71 | ||
72 | /** | |
73 | * Private constructor used only by JAXB. | |
74 | */ | |
75 | 0 | private WorkflowAttributeDefinition() { |
76 | 0 | this.attributeName = null; |
77 | 0 | this.parameters = null; |
78 | 0 | this.propertyDefinitions = null; |
79 | 0 | } |
80 | ||
81 | 0 | private WorkflowAttributeDefinition(Builder builder) { |
82 | 0 | this.attributeName = builder.getAttributeName(); |
83 | 0 | if (builder.getParameters() == null) { |
84 | 0 | this.parameters = Collections.emptyList(); |
85 | } else { | |
86 | 0 | this.parameters = new ArrayList<String>(builder.getParameters()); |
87 | } | |
88 | 0 | if (builder.getPropertyDefinitions() == null) { |
89 | 0 | this.propertyDefinitions = Collections.emptyList(); |
90 | } else { | |
91 | 0 | this.propertyDefinitions = new ArrayList<PropertyDefinition>(builder.getPropertyDefinitions()); |
92 | } | |
93 | 0 | } |
94 | ||
95 | /** | |
96 | * Returns the name of the attribute for this workflow attribute definition. Should never be a null or blank value. | |
97 | * | |
98 | * @return the name of the attribute for this workflow attribute definition | |
99 | */ | |
100 | public String getAttributeName() { | |
101 | 0 | return attributeName; |
102 | } | |
103 | ||
104 | /** | |
105 | * Returns an unmodifiable list of parameters that will be used to construct the attribute as a list of string | |
106 | * values. This list will never be null but it may be empty. | |
107 | * | |
108 | * @return the list of parameters used to construct the attribute | |
109 | */ | |
110 | public List<String> getParameters() { | |
111 | 0 | return Collections.unmodifiableList(parameters); |
112 | } | |
113 | ||
114 | /** | |
115 | * Returns an unmodifiable list of property names and values that will be passed to the attribute upon construction. | |
116 | * This list will never be null but it may be empty. | |
117 | * | |
118 | * @return the list of property names and values to will be be passed to the attribute upon construction | |
119 | */ | |
120 | public List<PropertyDefinition> getPropertyDefinitions() { | |
121 | 0 | return Collections.unmodifiableList(propertyDefinitions); |
122 | } | |
123 | ||
124 | /** | |
125 | * Returns the property definitions on this attribute definition as a map of strings instead of a list of | |
126 | * {@code PropertyDefinition} objects. | |
127 | * | |
128 | * @return a map representation of the property definitions on this workflow attribute definition | |
129 | */ | |
130 | public Map<String, String> getPropertyDefinitionsAsMap() { | |
131 | 0 | Map<String, String> propertiesDefinitionsMap = new HashMap<String, String>(); |
132 | 0 | for (PropertyDefinition propertyDefinition : getPropertyDefinitions()) { |
133 | 0 | propertiesDefinitionsMap.put(propertyDefinition.getName(), propertyDefinition.getValue()); |
134 | } | |
135 | 0 | return Collections.unmodifiableMap(propertiesDefinitionsMap); |
136 | } | |
137 | ||
138 | /** | |
139 | * A builder which can be used to construct instances of {@code WorkflowAttributeDefinition}. | |
140 | */ | |
141 | 0 | public final static class Builder implements Serializable, ModelBuilder { |
142 | ||
143 | private static final long serialVersionUID = 7549637048594326790L; | |
144 | ||
145 | private String attributeName; | |
146 | private List<String> parameters; | |
147 | private List<PropertyDefinition> propertyDefinitions; | |
148 | ||
149 | 0 | private Builder(String attributeName) { |
150 | 0 | setAttributeName(attributeName); |
151 | 0 | setParameters(new ArrayList<String>()); |
152 | 0 | setPropertyDefinitions(new ArrayList<PropertyDefinition>()); |
153 | 0 | } |
154 | ||
155 | 0 | private Builder(WorkflowAttributeDefinition definition) { |
156 | 0 | setAttributeName(definition.getAttributeName()); |
157 | 0 | setParameters(definition.getParameters()); |
158 | 0 | setPropertyDefinitions(definition.getPropertyDefinitions()); |
159 | 0 | } |
160 | ||
161 | /** | |
162 | * Creates a new builder copying the properties from the given definition into it. | |
163 | * | |
164 | * @param definition the definition from which to copy properties | |
165 | * @return a builder initialized with the properties copied from the given definition | |
166 | */ | |
167 | public static Builder create(WorkflowAttributeDefinition definition) { | |
168 | 0 | if (definition == null) { |
169 | 0 | throw new IllegalArgumentException("definition was null"); |
170 | } | |
171 | 0 | return new Builder(definition); |
172 | } | |
173 | ||
174 | /** | |
175 | * Constructs a builder which is initialized with the given attribute name. | |
176 | * | |
177 | * @param attributeName the attribute name to use when initializing this builder, cannot be a null or empty | |
178 | * value | |
179 | * | |
180 | * @return an instance of a builder initialized with the given attribute name | |
181 | * | |
182 | * @throws IllegalArgumentException if {@code attributeName} is a null or blank value | |
183 | */ | |
184 | public static Builder create(String attributeName) { | |
185 | 0 | return new Builder(attributeName); |
186 | ||
187 | } | |
188 | ||
189 | @Override | |
190 | public WorkflowAttributeDefinition build() { | |
191 | 0 | return new WorkflowAttributeDefinition(this); |
192 | } | |
193 | ||
194 | /** | |
195 | * Returns the attribute name that is set on this builder. | |
196 | * | |
197 | * @return the attribute name this is set on this builder | |
198 | */ | |
199 | public String getAttributeName() { | |
200 | 0 | return attributeName; |
201 | } | |
202 | ||
203 | /** | |
204 | * Returns a list of string parameters that have been set on this builder. | |
205 | * | |
206 | * @return a list of string parameters that have been set on this builder | |
207 | */ | |
208 | public List<String> getParameters() { | |
209 | 0 | return parameters; |
210 | } | |
211 | ||
212 | /** | |
213 | * Returns a list of {@code PropertyDefinition} objects that have been set on this builder. | |
214 | * | |
215 | * @return a list of property definitions that have been set on this builder | |
216 | */ | |
217 | public List<PropertyDefinition> getPropertyDefinitions() { | |
218 | 0 | return propertyDefinitions; |
219 | } | |
220 | ||
221 | /** | |
222 | * Sets the attribute name on this builder to the given value. Must not be a null or blank value. | |
223 | * | |
224 | * @param attributeName the value of the attributeName to set | |
225 | * @throws IllegalArgumentException if {@code attributeName} is a null or blank value | |
226 | */ | |
227 | public void setAttributeName(String attributeName) { | |
228 | 0 | if (StringUtils.isBlank(attributeName)) { |
229 | 0 | throw new IllegalArgumentException("attributeName was null or blank"); |
230 | } | |
231 | 0 | this.attributeName = attributeName; |
232 | 0 | } |
233 | ||
234 | /** | |
235 | * Adds a parameter to the list of parameters maintained by this builder. | |
236 | * | |
237 | * @param parameter the parameter value to add | |
238 | */ | |
239 | public void addParameter(String parameter) { | |
240 | 0 | parameters.add(parameter); |
241 | 0 | } |
242 | ||
243 | /** | |
244 | * Removes a parameter with the given value from the list of parameters maintained by this builder. | |
245 | * | |
246 | * @param parameter the parameter value to remove | |
247 | */ | |
248 | public void removeParameter(String parameter) { | |
249 | 0 | parameters.remove(parameter); |
250 | 0 | } |
251 | ||
252 | /** | |
253 | * Sets the list of parameters on this builder. | |
254 | * | |
255 | * @param parameters the list of parameters to set | |
256 | */ | |
257 | public void setParameters(List<String> parameters) { | |
258 | 0 | this.parameters = new ArrayList<String>(parameters); |
259 | 0 | } |
260 | ||
261 | /** | |
262 | * Adds the given property definition to the list of property definitions maintained by this builder. | |
263 | * | |
264 | * @param propertyDefinition the property definition to set, should not be null | |
265 | * @throws IllegalArgumentException if the given property definition is null | |
266 | */ | |
267 | public void addPropertyDefinition(PropertyDefinition propertyDefinition) { | |
268 | 0 | if (propertyDefinition == null) { |
269 | 0 | throw new IllegalArgumentException("propertyDefinition must be non-null."); |
270 | } | |
271 | 0 | propertyDefinitions.add(propertyDefinition); |
272 | 0 | } |
273 | ||
274 | /** | |
275 | * Sets the list of property definitions maintained by this build to the given list. | |
276 | * | |
277 | * @param propertyDefinitions the list of property definitions to set | |
278 | */ | |
279 | public void setPropertyDefinitions(List<PropertyDefinition> propertyDefinitions) { | |
280 | 0 | if (propertyDefinitions == null) { |
281 | 0 | setPropertyDefinitions(new ArrayList<PropertyDefinition>()); |
282 | } | |
283 | 0 | this.propertyDefinitions = new ArrayList<PropertyDefinition>(propertyDefinitions); |
284 | ||
285 | 0 | } |
286 | ||
287 | /** | |
288 | * Add a property definition constructed from the given name and value to the list of property definitions | |
289 | * on this builder. | |
290 | * | |
291 | * @param name name of the property definition to add, must not be a null or blank value | |
292 | * @param value value of the property definition to add | |
293 | * | |
294 | * @throws IllegalArgumentException if the given name is a null or blank value | |
295 | */ | |
296 | public void addPropertyDefinition(String name, String value) { | |
297 | 0 | addPropertyDefinition(PropertyDefinition.create(name, value)); |
298 | 0 | } |
299 | ||
300 | /** | |
301 | * Returns the property definition on this build which has the given name if it exists. This method will return | |
302 | * a null value if a definition with the given name cannot be found. | |
303 | * | |
304 | * @param name the name of the property definition to retrieve | |
305 | * | |
306 | * @return the property definition with the given name, or null if no such property definition is found | |
307 | * | |
308 | * @throws IllegalArgumentException if the given name is a null or blank value | |
309 | */ | |
310 | public PropertyDefinition getPropertyDefinition(String name) { | |
311 | 0 | if (StringUtils.isBlank(name)) { |
312 | 0 | throw new IllegalArgumentException("name was null or blank"); |
313 | } | |
314 | 0 | for (PropertyDefinition propertyDefinition : propertyDefinitions) { |
315 | 0 | if (propertyDefinition.equals(name)) { |
316 | 0 | return propertyDefinition; |
317 | } | |
318 | } | |
319 | 0 | return null; |
320 | } | |
321 | ||
322 | ||
323 | } | |
324 | ||
325 | /** | |
326 | * Defines some internal constants used on this class. | |
327 | */ | |
328 | 0 | static class Constants { |
329 | final static String ROOT_ELEMENT_NAME = "workflowAttributeDefinition"; | |
330 | final static String TYPE_NAME = "WorkflowAttributeDefinitionType"; | |
331 | } | |
332 | ||
333 | /** | |
334 | * A private class which exposes constants which define the XML element names to use when this object is marshalled to XML. | |
335 | */ | |
336 | 0 | static class Elements { |
337 | final static String ATTRIBUTE_NAME = "attributeName"; | |
338 | final static String PARAMETERS = "parameters"; | |
339 | final static String PARAMETER = "parameter"; | |
340 | final static String PROPERTY_DEFINITIONS = "propertyDefinitions"; | |
341 | final static String PROPERTY_DEFINITION = "propertyDefinition"; | |
342 | } | |
343 | ||
344 | } |