1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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
55 protected boolean preserveLockingKeysOnCopy = false;
56
57
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
78
79 @Override
80 public Class<? extends PromptBeforeValidation> getPromptBeforeValidationClass() {
81 return promptBeforeValidationClass;
82 }
83
84
85
86
87
88
89
90
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
104
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
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
134
135 public List<MaintainableSectionDefinition> getMaintainableSections() {
136 return maintainableSections;
137 }
138
139
140
141
142
143 @Override
144 public List<String> getLockingKeyFieldNames() {
145 return lockingKeys;
146 }
147
148
149
150
151
152
153 @Override
154 public boolean getAllowsNewOrCopy() {
155 return allowsNewOrCopy;
156 }
157
158
159
160
161
162
163 @Override
164 public void setAllowsNewOrCopy(boolean allowsNewOrCopy) {
165 this.allowsNewOrCopy = allowsNewOrCopy;
166 }
167
168
169
170
171
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
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
202
203
204
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
218
219
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
233
234
235
236
237
238
239
240
241
242
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
266
267 @Override
268 public boolean getPreserveLockingKeysOnCopy() {
269 return this.preserveLockingKeysOnCopy;
270 }
271
272
273
274
275 @Override
276 public void setPreserveLockingKeysOnCopy(boolean preserveLockingKeysOnCopy) {
277 this.preserveLockingKeysOnCopy = preserveLockingKeysOnCopy;
278 }
279
280
281
282
283 @Override
284 public boolean getAllowsRecordDeletion() {
285 return this.allowsRecordDeletion;
286 }
287
288
289
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
308
309
310
311
312
313
314 @Override
315 public Class<? extends DocumentAuthorizer> getDocumentAuthorizerClass() {
316 return (Class<? extends DocumentAuthorizer>) super.getDocumentAuthorizerClass();
317 }
318
319
320
321
322
323
324
325
326
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
345
346
347
348 @Override
349 public void setWebScriptFiles(List<String> webScriptFiles) {
350 this.webScriptFiles = webScriptFiles;
351 }
352
353
354
355
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
374
375 @Override
376 public Class<? extends DerivedValuesSetter> getDerivedValuesSetterClass() {
377 return this.derivedValuesSetterClass;
378 }
379
380
381
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 }