View Javadoc

1   /**
2    * Copyright 2005-2013 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;
17  
18  import java.util.ArrayList;
19  import java.util.LinkedHashMap;
20  import java.util.List;
21  import java.util.Map;
22  
23  import org.kuali.rice.kew.api.doctype.DocumentTypeService;
24  import org.kuali.rice.kns.document.MaintenanceDocumentBase;
25  import org.kuali.rice.kns.document.authorization.DocumentAuthorizer;
26  import org.kuali.rice.kns.document.authorization.DocumentPresentationController;
27  import org.kuali.rice.kns.document.authorization.MaintenanceDocumentAuthorizerBase;
28  import org.kuali.rice.kns.document.authorization.MaintenanceDocumentPresentationControllerBase;
29  import org.kuali.rice.kns.maintenance.Maintainable;
30  import org.kuali.rice.kns.rule.PromptBeforeValidation;
31  import org.kuali.rice.kns.rules.MaintenanceDocumentRule;
32  import org.kuali.rice.kns.web.derivedvaluesetter.DerivedValuesSetter;
33  import org.kuali.rice.kns.web.struts.action.KualiDocumentActionBase;
34  import org.kuali.rice.krad.bo.BusinessObject;
35  import org.kuali.rice.krad.datadictionary.DataDictionaryException;
36  import org.kuali.rice.krad.datadictionary.exception.DuplicateEntryException;
37  import org.kuali.rice.krad.document.Document;
38  import org.kuali.rice.krad.rules.MaintenanceDocumentRuleBase;
39  
40  /**
41   * @author Kuali Rice Team (rice.collab@kuali.org)
42   */
43  @Deprecated
44  public class MaintenanceDocumentEntry extends org.kuali.rice.krad.datadictionary.MaintenanceDocumentEntry implements KNSDocumentEntry {
45      protected List<MaintainableSectionDefinition> maintainableSections = new ArrayList<MaintainableSectionDefinition>();
46      protected List<String> lockingKeys = new ArrayList<String>();
47  
48      protected Map<String, MaintainableSectionDefinition> maintainableSectionMap =
49              new LinkedHashMap<String, MaintainableSectionDefinition>();
50  
51      protected boolean allowsNewOrCopy = true;
52      protected String additionalSectionsFile;
53  
54      //for issue KULRice3072, to enable PK field copy
55      protected boolean preserveLockingKeysOnCopy = false;
56  
57      // for issue KULRice3070, to enable deleting a db record using maintenance doc
58      protected boolean allowsRecordDeletion = false;
59  
60      protected boolean translateCodes = false;
61  
62      protected Class<? extends PromptBeforeValidation> promptBeforeValidationClass;
63      protected Class<? extends DerivedValuesSetter> derivedValuesSetterClass;
64      protected List<String> webScriptFiles = new ArrayList<String>(3);
65      protected List<HeaderNavigation> headerNavigationList = new ArrayList<HeaderNavigation>();
66  
67      protected boolean sessionDocument = false;
68  
69      public MaintenanceDocumentEntry() {
70          super();
71  
72          documentAuthorizerClass = MaintenanceDocumentAuthorizerBase.class;
73          documentPresentationControllerClass = MaintenanceDocumentPresentationControllerBase.class;
74      }
75  
76       /**
77       * @return Returns the preRulesCheckClass.
78       */
79      @Override
80  	public Class<? extends PromptBeforeValidation> getPromptBeforeValidationClass() {
81          return promptBeforeValidationClass;
82      }
83  
84      /**
85       * The promptBeforeValidationClass element is the full class name of the java
86       * class which determines whether the user should be asked any questions prior to running validation.
87       *
88       * @see KualiDocumentActionBase#promptBeforeValidation(org.apache.struts.action.ActionMapping,
89       *      org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest,
90       *      javax.servlet.http.HttpServletResponse, String)
91       */
92      @Override
93  	public void setPromptBeforeValidationClass(Class<? extends PromptBeforeValidation> preRulesCheckClass) {
94          this.promptBeforeValidationClass = preRulesCheckClass;
95      }
96  
97      @Override
98      public Class<? extends Document> getStandardDocumentBaseClass() {
99          return MaintenanceDocumentBase.class;
100     }
101 
102     /*
103            This attribute is used in many contexts, for example, in maintenance docs, it's used to specify the classname
104            of the BO being maintained.
105     */
106     public void setBusinessObjectClass(Class<? extends BusinessObject> businessObjectClass) {
107         if (businessObjectClass == null) {
108             throw new IllegalArgumentException("invalid (null) dataObjectClass");
109         }
110 
111         setDataObjectClass(businessObjectClass);
112     }
113 
114     public Class<? extends BusinessObject> getBusinessObjectClass() {
115         return (Class<? extends BusinessObject>) getDataObjectClass();
116     }
117 
118     /**
119      * @see org.kuali.rice.krad.datadictionary.DocumentEntry#getEntryClass()
120      */
121     @SuppressWarnings("unchecked")
122     @Override
123     public Class getEntryClass() {
124         return getDataObjectClass();
125     }
126 
127     @Override
128 	public Class<? extends Maintainable> getMaintainableClass() {
129         return (Class<? extends Maintainable>) super.getMaintainableClass();
130     }
131 
132     /**
133      * @return List of MaintainableSectionDefinition objects contained in this document
134      */
135     public List<MaintainableSectionDefinition> getMaintainableSections() {
136         return maintainableSections;
137     }
138 
139     /**
140      * @return List of all lockingKey fieldNames associated with this LookupDefinition, in the order in which they were
141      *         added
142      */
143     @Override
144 	public List<String> getLockingKeyFieldNames() {
145         return lockingKeys;
146     }
147 
148     /**
149      * Gets the allowsNewOrCopy attribute.
150      *
151      * @return Returns the allowsNewOrCopy.
152      */
153     @Override
154 	public boolean getAllowsNewOrCopy() {
155         return allowsNewOrCopy;
156     }
157 
158     /**
159      * The allowsNewOrCopy element contains a value of true or false.
160      * If true, this indicates the maintainable should allow the
161      * new and/or copy maintenance actions.
162      */
163     @Override
164 	public void setAllowsNewOrCopy(boolean allowsNewOrCopy) {
165         this.allowsNewOrCopy = allowsNewOrCopy;
166     }
167 
168     /**
169      * Directly validate simple fields, call completeValidation on Definition fields.
170      *
171      * @see org.kuali.rice.krad.datadictionary.DocumentEntry#completeValidation()
172      */
173     @Override
174 	public void completeValidation() {
175         if ( !MaintenanceDocumentRule.class.isAssignableFrom( getBusinessRulesClass() ) ) {
176            throw new DataDictionaryException( "ERROR: Business rules class for KNS Maintenance document entry " +
177                    getBusinessRulesClass().getName() + " does not implement the expected " +
178                    MaintenanceDocumentRule.class.getName() + " interface.");
179         }
180         super.completeValidation();
181 
182         for (MaintainableSectionDefinition maintainableSectionDefinition : maintainableSections) {
183             maintainableSectionDefinition.completeValidation(getDataObjectClass(), null);
184         }
185     }
186 
187     /**
188      * @see java.lang.Object#toString()
189      */
190     @Override
191 	public String toString() {
192         return "MaintenanceDocumentEntry for documentType " + getDocumentTypeName();
193     }
194 
195     @Deprecated
196     public String getAdditionalSectionsFile() {
197         return additionalSectionsFile;
198     }
199 
200     /*
201            The additionalSectionsFile element specifies the name of the location
202            of an additional JSP file to include in the maintenance document
203            after the generation sections but before the notes.
204            The location semantics are those of jsp:include.
205     */
206     @Deprecated
207     public void setAdditionalSectionsFile(String additionalSectionsFile) {
208         this.additionalSectionsFile = additionalSectionsFile;
209     }
210 
211     @Override
212 	public List<String> getLockingKeys() {
213         return lockingKeys;
214     }
215 
216     /*
217            The lockingKeys element specifies a list of fields
218            that comprise a unique key.  This is used for record locking
219            during the file maintenance process.
220     */
221     @Override
222 	public void setLockingKeys(List<String> lockingKeys) {
223         for (String lockingKey : lockingKeys) {
224             if (lockingKey == null) {
225                 throw new IllegalArgumentException("invalid (null) lockingKey");
226             }
227         }
228         this.lockingKeys = lockingKeys;
229     }
230 
231     /**
232      * The maintainableSections elements allows the maintenance document to
233      * be presented in sections.  Each section can have a different title.
234      *
235      * JSTL: maintainbleSections is a Map whichis accessed by a key
236      * of "maintainableSections".  This map contains entries with the
237      * following keys:
238      * "0"   (for first section)
239      * "1"   (for second section)
240      * etc.
241      * The corresponding value for each entry is a maintainableSection ExportMap.
242      * See MaintenanceDocumentEntryMapper.java.
243      */
244     @Deprecated
245     public void setMaintainableSections(List<MaintainableSectionDefinition> maintainableSections) {
246         maintainableSectionMap.clear();
247         for (MaintainableSectionDefinition maintainableSectionDefinition : maintainableSections) {
248             if (maintainableSectionDefinition == null) {
249                 throw new IllegalArgumentException("invalid (null) maintainableSectionDefinition");
250             }
251 
252             String sectionTitle = maintainableSectionDefinition.getTitle();
253             if (maintainableSectionMap.containsKey(sectionTitle)) {
254                 throw new DuplicateEntryException(
255                         "section '" + sectionTitle + "' already defined for maintenanceDocument '" +
256                                 getDocumentTypeName() + "'");
257             }
258 
259             maintainableSectionMap.put(sectionTitle, maintainableSectionDefinition);
260         }
261         this.maintainableSections = maintainableSections;
262     }
263 
264     /**
265      * @return the preserveLockingKeysOnCopy
266      */
267     @Override
268 	public boolean getPreserveLockingKeysOnCopy() {
269         return this.preserveLockingKeysOnCopy;
270     }
271 
272     /**
273      * @param preserveLockingKeysOnCopy the preserveLockingKeysOnCopy to set
274      */
275     @Override
276 	public void setPreserveLockingKeysOnCopy(boolean preserveLockingKeysOnCopy) {
277         this.preserveLockingKeysOnCopy = preserveLockingKeysOnCopy;
278     }
279 
280     /**
281      * @return the allowRecordDeletion
282      */
283     @Override
284 	public boolean getAllowsRecordDeletion() {
285         return this.allowsRecordDeletion;
286     }
287 
288     /**
289      * @param allowsRecordDeletion the allowRecordDeletion to set
290      */
291     @Override
292 	public void setAllowsRecordDeletion(boolean allowsRecordDeletion) {
293         this.allowsRecordDeletion = allowsRecordDeletion;
294     }
295 
296     @Deprecated
297     public boolean isTranslateCodes() {
298         return this.translateCodes;
299     }
300 
301     @Deprecated
302     public void setTranslateCodes(boolean translateCodes) {
303         this.translateCodes = translateCodes;
304     }
305 
306     /**
307      * Returns the document authorizer class for the document.  Only framework code should be calling this method.
308      * Client devs should use {@link DocumentTypeService#getDocumentAuthorizer(org.kuali.rice.krad.document.Document)}
309      * or
310      * {@link DocumentTypeService#getDocumentAuthorizer(String)}
311      *
312      * @return a document authorizer class
313      */
314     @Override
315     public Class<? extends DocumentAuthorizer> getDocumentAuthorizerClass() {
316         return (Class<? extends DocumentAuthorizer>) super.getDocumentAuthorizerClass();
317     }
318 
319     /**
320      * Returns the document presentation controller class for the document.  Only framework code should be calling this
321      * method.
322      * Client devs should use {@link DocumentTypeService#getDocumentPresentationController(org.kuali.rice.krad.document.Document)}
323      * or
324      * {@link DocumentTypeService#getDocumentPresentationController(String)}
325      *
326      * @return the documentPresentationControllerClass
327      */
328     @Override
329     public Class<? extends DocumentPresentationController> getDocumentPresentationControllerClass() {
330         return (Class<? extends DocumentPresentationController>)  super.getDocumentPresentationControllerClass();
331     }
332 
333     @Override
334 	public List<HeaderNavigation> getHeaderNavigationList() {
335         return headerNavigationList;
336     }
337 
338     @Override
339 	public List<String> getWebScriptFiles() {
340         return webScriptFiles;
341     }
342 
343     /**
344      * The webScriptFile element defines the name of javascript files
345      * that are necessary for processing the document.  The specified
346      * javascript files will be included in the generated html.
347      */
348     @Override
349 	public void setWebScriptFiles(List<String> webScriptFiles) {
350         this.webScriptFiles = webScriptFiles;
351     }
352 
353     /**
354      * The headerNavigation element defines a set of additional
355      * tabs which will appear on the document.
356      */
357     @Override
358 	public void setHeaderNavigationList(List<HeaderNavigation> headerNavigationList) {
359         this.headerNavigationList = headerNavigationList;
360     }
361 
362     @Override
363 	public boolean isSessionDocument() {
364         return this.sessionDocument;
365     }
366 
367     @Override
368 	public void setSessionDocument(boolean sessionDocument) {
369         this.sessionDocument = sessionDocument;
370     }
371 
372     /**
373      * @return the derivedValuesSetter
374      */
375     @Override
376 	public Class<? extends DerivedValuesSetter> getDerivedValuesSetterClass() {
377         return this.derivedValuesSetterClass;
378     }
379 
380     /**
381      * @param derivedValuesSetter the derivedValuesSetter to set
382      */
383     @Override
384 	public void setDerivedValuesSetterClass(Class<? extends DerivedValuesSetter> derivedValuesSetter) {
385         this.derivedValuesSetterClass = derivedValuesSetter;
386     }
387 
388     @Override
389     public void dataDictionaryPostProcessing() {
390     	super.dataDictionaryPostProcessing();
391         if ( getBusinessRulesClass() == null || getBusinessRulesClass().equals(MaintenanceDocumentRuleBase.class) ) {
392             setBusinessRulesClass(org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase.class);
393         }
394     }
395 }