View Javadoc

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.kns.datadictionary.exporter;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.kuali.rice.kns.datadictionary.control.ButtonControlDefinition;
20  import org.kuali.rice.kns.datadictionary.control.CurrencyControlDefinition;
21  import org.kuali.rice.kns.datadictionary.control.LinkControlDefinition;
22  import org.kuali.rice.krad.datadictionary.AttributeDefinition;
23  import org.kuali.rice.krad.datadictionary.DataDictionaryEntryBase;
24  import org.kuali.rice.krad.datadictionary.control.ControlDefinition;
25  import org.kuali.rice.krad.datadictionary.exporter.ExportMap;
26  
27  import java.util.Map;
28  
29  /**
30   * AttributesMapBuilder
31   *
32   *
33   */
34  @Deprecated
35  public class AttributesMapBuilder {
36  
37      /**
38       * Default constructor
39       */
40      public AttributesMapBuilder() {
41      }
42  
43  
44      /**
45       * @param entry
46       * @return ExportMap containing the standard entries for the entry's AttributesDefinition
47       */
48      public ExportMap buildAttributesMap(DataDictionaryEntryBase entry) {
49          ExportMap attributesMap = new ExportMap("attributes");
50  
51          for ( AttributeDefinition attribute : entry.getAttributes() ) {
52              attributesMap.set(buildAttributeMap(attribute, entry.getFullClassName()));
53          }
54  
55          return attributesMap;
56      }
57  
58      public ExportMap buildAttributeMap(AttributeDefinition attribute, String fullClassName) {
59          ExportMap attributeMap = new ExportMap(attribute.getName());
60  
61          // simple properties
62          attributeMap.set("name", attribute.getName());
63          attributeMap.set("forceUppercase", attribute.getForceUppercase().toString());
64          attributeMap.set("label", attribute.getLabel());
65          attributeMap.set("shortLabel", attribute.getShortLabel());
66         
67          attributeMap.set("maxLength", attribute.getMaxLength().toString());
68          String exclusiveMin = attribute.getExclusiveMin();
69          if (exclusiveMin != null) {
70              attributeMap.set("exclusiveMin", exclusiveMin/*.toString()*/);
71          }
72          String exclusiveMax = attribute.getInclusiveMax();
73          if (exclusiveMax != null) {
74              attributeMap.set("exclusiveMax", exclusiveMax/*.toString()*/);
75          }
76  
77          attributeMap.set("required", attribute.isRequired().toString());
78          if (attribute.getSummary() != null) {
79              attributeMap.set("summary", attribute.getSummary());
80          }
81          if (attribute.getDescription() != null) {
82              attributeMap.set("description", attribute.getDescription());
83          }
84          if (attribute.hasFormatterClass()) {
85              attributeMap.set("formatterClass", attribute.getFormatterClass());
86          }
87  
88          // complex properties
89          if (attribute.hasValidationPattern()) {
90              attributeMap.set(attribute.getValidationPattern().buildExportMap("validationPattern"));
91          }
92  
93          if(attribute.hasAttributeSecurity()){
94          	attributeMap.set("attributeSecurityMask", String.valueOf(attribute.getAttributeSecurity().isMask()));
95          	attributeMap.set("attributeSecurityPartialMask", String.valueOf(attribute.getAttributeSecurity().isPartialMask()));
96          	attributeMap.set("attributeSecurityHide", String.valueOf(attribute.getAttributeSecurity().isHide()));
97          	attributeMap.set("attributeSecurityReadOnly", String.valueOf(attribute.getAttributeSecurity().isReadOnly()));
98    	
99          	// TODO: consider whether to export class names from the attribute security
100         }
101 
102         attributeMap.set(buildControlMap(attribute));
103         if (attribute.getOptionsFinder() != null) {
104             attributeMap.set(buildKeyLabelMap(attribute));
105         }
106         if (StringUtils.isNotBlank(fullClassName)) {
107             attributeMap.set("fullClassName", fullClassName);
108         }
109 
110         return attributeMap;
111     }
112 
113     private ExportMap buildKeyLabelMap(AttributeDefinition attribute) {
114 
115         ExportMap keyLabelMap = new ExportMap("keyLabelMap");
116 
117         for (Map.Entry<String, String> entry : attribute.getOptionsFinder().getKeyLabelMap().entrySet()) {
118             if (StringUtils.isNotBlank(entry.getKey())) {
119                 keyLabelMap.set(entry.getKey(), entry.getValue());
120             }
121         }
122         return keyLabelMap;
123     }
124 
125     private ExportMap buildControlMap(AttributeDefinition attribute) {
126         ControlDefinition control = attribute.getControl();
127         ExportMap controlMap = new ExportMap("control");
128 
129         if (control.isCheckbox()) {
130             controlMap.set("checkbox", "true");
131         }
132         else if (control.isHidden()) {
133             controlMap.set("hidden", "true");
134         }
135         else if (control.isKualiUser()) {
136             controlMap.set("kualiUser", "true");
137         }
138         else if (control.isRadio()) {
139             controlMap.set("radio", "true");
140             controlMap.set("valuesFinder", control.getValuesFinderClass());
141             if (control.getBusinessObjectClass() != null) {
142                 controlMap.set("businessObject", control.getBusinessObjectClass());
143             }
144             if (StringUtils.isNotEmpty(control.getKeyAttribute())) {
145                 controlMap.set("keyAttribute", control.getKeyAttribute());
146             }
147             if (StringUtils.isNotEmpty(control.getLabelAttribute())) {
148                 controlMap.set("labelAttribute", control.getLabelAttribute());
149             }
150             if (control.getIncludeKeyInLabel() != null) {
151                 controlMap.set("includeKeyInLabel", control.getIncludeKeyInLabel().toString());
152             }
153         }
154         else if (control.isSelect()) {
155             controlMap.set("select", "true");
156             controlMap.set("valuesFinder", control.getValuesFinderClass());
157             if (control.getBusinessObjectClass() != null) {
158                 controlMap.set("businessObject", control.getBusinessObjectClass());
159             }
160             if (StringUtils.isNotEmpty(control.getKeyAttribute())) {
161                 controlMap.set("keyAttribute", control.getKeyAttribute());
162             }
163             if (StringUtils.isNotEmpty(control.getLabelAttribute())) {
164                 controlMap.set("labelAttribute", control.getLabelAttribute());
165             }
166             if (control.getIncludeBlankRow() != null) {
167                 controlMap.set("includeBlankRow", control.getIncludeBlankRow().toString());
168             }
169             if (control.getIncludeKeyInLabel() != null) {
170                 controlMap.set("includeKeyInLabel", control.getIncludeKeyInLabel().toString());
171             }
172         }
173         else if (control.isMultiselect()) {
174             controlMap.set("multiselect", "true");
175             controlMap.set("valuesFinder", control.getValuesFinderClass());
176             if (control.getBusinessObjectClass() != null) {
177                 controlMap.set("businessObject", control.getBusinessObjectClass());
178             }
179             if (StringUtils.isNotEmpty(control.getKeyAttribute())) {
180                 controlMap.set("keyAttribute", control.getKeyAttribute());
181             }
182             if (StringUtils.isNotEmpty(control.getLabelAttribute())) {
183                 controlMap.set("labelAttribute", control.getLabelAttribute());
184             }
185             if (control.getIncludeKeyInLabel() != null) {
186                 controlMap.set("includeKeyInLabel", control.getIncludeKeyInLabel().toString());
187             }
188             if (control.getSize() != null) {
189             	controlMap.set("size", control.getSize().toString());
190             }
191         }
192         else if (control.isText()) {
193             controlMap.set("text", "true");
194             controlMap.set("size", control.getSize().toString());
195             controlMap.set("datePicker", Boolean.valueOf(control.isDatePicker()).toString());
196             controlMap.set("ranged", Boolean.valueOf(control.isRanged()).toString());
197         }
198         else if (control.isTextarea()) {
199             controlMap.set("textarea", "true");
200             controlMap.set("rows", control.getRows().toString());
201             controlMap.set("cols", control.getCols().toString());
202             controlMap.set("expandedTextArea", Boolean.valueOf(control.isExpandedTextArea()).toString());
203         }
204         else if (control.isCurrency()) {
205             controlMap.set("currency", "true");
206             controlMap.set("size", control.getSize().toString());
207             controlMap.set("formattedMaxLength", ((CurrencyControlDefinition) control).getFormattedMaxLength().toString());
208         }
209         else if (control.isLookupHidden()) {
210             controlMap.set("lookupHidden", "true");
211         }
212         else if (control.isLookupReadonly()) {
213             controlMap.set("lookupReadonly", "true");
214         }else if (control.isButton()) {
215             controlMap.set("button", "true");
216             if (StringUtils.isNotEmpty(((ButtonControlDefinition) control).getImageSrc())) {
217             	controlMap.set("imageSrc", ((ButtonControlDefinition) control).getImageSrc());
218             }
219             if (StringUtils.isNotEmpty(((ButtonControlDefinition) control).getStyleClass())) {
220             	controlMap.set("styleClass", ((ButtonControlDefinition) control).getStyleClass() );
221             }
222         }else if (control.isLink()) {
223             controlMap.set("link", "true");
224             if (StringUtils.isNotEmpty(((LinkControlDefinition) control).getTarget())) {
225             	controlMap.set("target", ((LinkControlDefinition) control).getTarget());
226             }
227             if (StringUtils.isNotEmpty(((LinkControlDefinition) control).getStyleClass())) {
228             	controlMap.set("styleClass", ((LinkControlDefinition) control).getStyleClass() );
229             }
230             if (StringUtils.isNotEmpty(((LinkControlDefinition) control).getHrefText())) {
231             	controlMap.set("hrefText", ((LinkControlDefinition) control).getHrefText());
232             }
233         }
234 
235         return controlMap;
236     }
237 }