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.KNSServiceLocatorWeb; |
21 |
|
import org.kuali.rice.kns.util.GlobalVariables; |
22 |
|
|
23 |
|
import edu.sampleu.travel.document.TravelDocument2; |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 2 |
Complexity Density: 0.29 |
|
25 |
|
public class TravelDocumentRule extends TransactionalDocumentRuleBase { |
26 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
27 |
0
|
@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
|
KNSServiceLocatorWeb.getDictionaryValidationService().validateDocument(document); |
38 |
|
|
39 |
0
|
GlobalVariables.getMessageMap().removeFromErrorPath("document"); |
40 |
|
|
41 |
0
|
return valid; |
42 |
|
} |
43 |
|
} |