View Javadoc
1   /**
2    * Copyright 2005-2014 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.krad.datadictionary;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.kuali.rice.core.api.data.DataType;
20  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
21  import org.kuali.rice.krad.data.metadata.DataObjectAttribute;
22  import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
23  import org.kuali.rice.krad.datadictionary.validation.capability.ExistenceConstrainable;
24  import org.kuali.rice.krad.datadictionary.validation.capability.SimpleConstrainable;
25  import org.kuali.rice.krad.datadictionary.validation.constraint.SimpleConstraint;
26  import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
27  
28  /**
29   * Common class for attribute definitions in the DataDictionary, which contains
30   * information relating to the display, validation, and general maintenance of a
31   * specific attribute of an entry. An attribute can be a simple or complex attribute
32   *
33   * @author Kuali Rice Team (rice.collab@kuali.org)
34   */
35  public abstract class AttributeDefinitionBase extends DataDictionaryDefinitionBase implements ExistenceConstrainable,
36          SimpleConstrainable {
37  
38      private static final long serialVersionUID = 1L;
39  
40      protected String name;
41  
42      protected String label;
43      protected String shortLabel;
44      protected String displayLabelAttribute;
45  
46      protected String constraintText;
47      protected String summary;
48      protected String description;
49  
50      protected SimpleConstraint simpleConstraint;
51  
52      protected DataObjectAttribute dataObjectAttribute;
53  
54      public AttributeDefinitionBase() {
55          super();
56          simpleConstraint = new SimpleConstraint();
57      }
58  
59      /**
60       * Name of the attribute
61       *
62       * @return the name
63       */
64      @Override
65      @BeanTagAttribute(name="name")
66      public String getName() {
67          return name;
68      }
69  
70      /**
71       * Name of the attribute
72       *
73       * @param name
74       */
75      public void setName(String name) {
76          if (StringUtils.isBlank(name)) {
77              throw new IllegalArgumentException("invalid (blank) name");
78          }
79          this.name = name;
80      }
81  
82      /**
83       * The label element is the field or collection name that will be shown on
84       * inquiry and maintenance screens. This will be overridden by presence of
85       * displayLabelAttribute element.
86       *
87       * @return the label
88       */
89      @BeanTagAttribute(name="label")
90      public String getLabel() {
91          if ( label != null ) {
92              return label;
93          }
94          if ( getDataObjectAttribute() != null ) {
95              return getDataObjectAttribute().getLabel();
96          }
97          if ( GlobalResourceLoader.isInitialized() && KRADServiceLocatorWeb.getUifDefaultingService() != null ) {
98              return KRADServiceLocatorWeb.getUifDefaultingService().deriveHumanFriendlyNameFromPropertyName( getName() );
99          }
100         return getName();
101     }
102 
103     /**
104      * The label element is the field or collection name that will be shown on
105      * inquiry and maintenance screens. This will be overridden by presence of
106      * displayLabelAttribute element.
107      */
108     public void setLabel(String label) {
109         if (StringUtils.isBlank(label)) {
110             throw new IllegalArgumentException("invalid (blank) label");
111         }
112         this.label = label;
113     }
114 
115     /**
116      * @return the shortLabel, or the label if no shortLabel has been set
117      */
118     @BeanTagAttribute(name="shortLabel")
119     public String getShortLabel() {
120         if ( shortLabel != null ) {
121             return shortLabel;
122         }
123         if ( getDataObjectAttribute() != null ) {
124             // if the short label was not explicitly set on the metadata but the label was on the DD, default to the DD label
125             if ( StringUtils.equals(getDataObjectAttribute().getLabel(), getDataObjectAttribute().getShortLabel())
126                     && label != null ) {
127                 return getLabel();
128             }
129             return getDataObjectAttribute().getShortLabel();
130         }
131         return getLabel();
132     }
133 
134     /**
135      * @return the shortLabel directly, without substituting in the label
136      */
137     protected String getDirectShortLabel() {
138         if ( shortLabel != null ) {
139             return shortLabel;
140         }
141         if ( getDataObjectAttribute() != null ) {
142             return getDataObjectAttribute().getShortLabel();
143         }
144         return "";
145     }
146 
147     /**
148      * The shortLabel element is the field or collection name that will be used
149      * in applications when a shorter name (than the label element) is required.
150      * This will be overridden by presence of displayLabelAttribute element.
151      */
152     public void setShortLabel(String shortLabel) {
153         if (StringUtils.isBlank(shortLabel)) {
154             throw new IllegalArgumentException("invalid (blank) shortLabel");
155         }
156         this.shortLabel = shortLabel;
157     }
158 
159     /**
160      * Text that display a restriction on the value a field can hold
161      *
162      * <p>
163      * For example when the value must be a valid format (phone number, email), certain length, min/max value and
164      * so on this text can be used to indicate the constraint to the user. Generally displays with the control so
165      * it is visible when the user tabs to the field
166      * </p>
167      *
168      * @return String text to display for the constraint message
169      */
170     @BeanTagAttribute(name="constraintText")
171     public String getConstraintText() {
172         if ( constraintText == null ) {
173             constraintText = deriveConstraintText();
174         }
175         return constraintText;
176     }
177 
178     protected String deriveConstraintText() {
179         if ( getDataObjectAttribute() != null ) {
180             if ( getDataObjectAttribute().getDataType().equals(DataType.DATE) ) {
181                 return "mm/dd/yyyy";
182             }
183         }
184         return "";
185     }
186 
187     /**
188      * Setter for the constraint message text
189      *
190      * @param constraintText
191      */
192     public void setConstraintText(String constraintText) {
193         this.constraintText = constraintText;
194     }
195 
196     /**
197      * The summary element is used to provide a short description of the
198      * attribute or collection. This is designed to be used for help purposes.
199      *
200      * @return the summary
201      */
202     @BeanTagAttribute(name="summary")
203     public String getSummary() {
204         if ( summary != null ) {
205             return summary;
206         }
207         return "";
208     }
209 
210     /**
211      * The summary element is used to provide a short description of the
212      * attribute or collection. This is designed to be used for help purposes.
213      */
214     public void setSummary(String summary) {
215         this.summary = summary;
216     }
217 
218     /**
219      * The description element is used to provide a long description of the
220      * attribute or collection. This is designed to be used for help purposes.
221      *
222      * @return the description
223      */
224     @BeanTagAttribute(name="description")
225     public String getDescription() {
226         if ( description != null ) {
227             return description;
228         }
229         if ( getDataObjectAttribute() != null ) {
230             return getDataObjectAttribute().getDescription();
231         }
232         return "";
233     }
234 
235     /**
236      * The description element is used to provide a long description of the
237      * attribute or collection. This is designed to be used for help purposes.
238      */
239     public void setDescription(String description) {
240         this.description = description;
241     }
242 
243     public String getDisplayLabelAttribute() {
244         if ( displayLabelAttribute != null ) {
245             return displayLabelAttribute;
246         }
247         if ( getDataObjectAttribute() != null ) {
248             return getDataObjectAttribute().getDisplayAttributeName();
249         }
250         return null;
251     }
252 
253     /**
254      * The displayLabelAttribute element is used to indicate that the label and
255      * short label should be obtained from another attribute.
256      *
257      * The label element and short label element defined for this attribute will
258      * be overridden. Instead, the label and short label values will be obtained
259      * by referencing the corresponding values from the attribute indicated by
260      * this element.
261      */
262     public void setDisplayLabelAttribute(String displayLabelAttribute) {
263         this.displayLabelAttribute = displayLabelAttribute;
264     }
265 
266     /**
267      * Gets the SimpleConstraint which contains settings for required, min, max, minLength, and maxLength.
268      *
269      * @return SimpleConstraint object
270      */
271     @Override
272     public SimpleConstraint getSimpleConstraint() {
273         return simpleConstraint;
274     }
275 
276     /**
277      * Sets the SimpleConstraint which contains settings for required, min, max, minLength, and maxLength.
278      *
279      * @param simpleConstraint
280      */
281     public void setSimpleConstraint(SimpleConstraint simpleConstraint) {
282         this.simpleConstraint = simpleConstraint;
283     }
284 
285     /**
286      * Sets if this attribute is required
287      *
288      * @param required true when required, false otherwise
289      */
290     public void setRequired(Boolean required) {
291         this.simpleConstraint.setRequired(required);
292     }
293 
294     /**
295      * The required element allows values of "true" or "false". A value of
296      * "true" indicates that a value must be entered for this business object
297      * when creating or editing a new business object.
298      */
299     @Override
300     @BeanTagAttribute(name="required")
301     public Boolean isRequired() {
302         if ( simpleConstraint.isRequired() != null ) {
303             return simpleConstraint.isRequired();
304         }
305         if ( getDataObjectAttribute() != null ) {
306             return getDataObjectAttribute().isRequired();
307         }
308         return Boolean.FALSE;
309     }
310 
311 
312     public DataObjectAttribute getDataObjectAttribute() {
313         return dataObjectAttribute;
314     }
315 
316     public void setDataObjectAttribute(DataObjectAttribute dataObjectAttribute) {
317         this.dataObjectAttribute = dataObjectAttribute;
318     }
319 }