1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.travel.document.rule; |
17 | |
|
18 | |
import org.kuali.rice.kns.document.Document; |
19 | |
import org.kuali.rice.kns.rules.TransactionalDocumentRuleBase; |
20 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
21 | |
import org.kuali.rice.kns.util.GlobalVariables; |
22 | |
|
23 | |
import edu.sampleu.travel.document.TravelDocument2; |
24 | |
|
25 | 0 | public class TravelDocumentRule extends TransactionalDocumentRuleBase { |
26 | |
|
27 | |
@Override |
28 | |
protected boolean processCustomSaveDocumentBusinessRules(Document document) { |
29 | 0 | if (!(document instanceof TravelDocument2)) { |
30 | 0 | return false; |
31 | |
} |
32 | |
|
33 | 0 | boolean valid = true; |
34 | |
|
35 | 0 | GlobalVariables.getMessageMap().addToErrorPath("document"); |
36 | |
|
37 | 0 | KNSServiceLocator.getDictionaryValidationService().validateDocument(document); |
38 | |
|
39 | 0 | GlobalVariables.getMessageMap().removeFromErrorPath("document"); |
40 | |
|
41 | 0 | return valid; |
42 | |
} |
43 | |
} |