1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.rule.event; |
17 | |
|
18 | |
import org.kuali.rice.kns.bo.PersistableBusinessObject; |
19 | |
import org.kuali.rice.kns.document.Document; |
20 | |
import org.kuali.rice.kns.document.MaintenanceDocument; |
21 | |
import org.kuali.rice.kns.rule.AddCollectionLineRule; |
22 | |
import org.kuali.rice.kns.rule.BusinessRule; |
23 | |
|
24 | |
public class KualiAddLineEvent extends KualiDocumentEventBase { |
25 | |
|
26 | |
private PersistableBusinessObject bo; |
27 | |
private String collectionName; |
28 | |
|
29 | |
public KualiAddLineEvent( Document document, String collectionName, PersistableBusinessObject addLine ) { |
30 | 0 | super("adding bo to document collection " + KualiDocumentEventBase.getDocumentId(document), "", document); |
31 | |
|
32 | 0 | this.bo = addLine; |
33 | 0 | this.collectionName = collectionName; |
34 | 0 | } |
35 | |
|
36 | |
public boolean invokeRuleMethod(BusinessRule rule) { |
37 | 0 | return ((AddCollectionLineRule)rule).processAddCollectionLineBusinessRules( (MaintenanceDocument)getDocument(), collectionName, bo ); |
38 | |
} |
39 | |
|
40 | |
public Class<? extends BusinessRule> getRuleInterfaceClass() { |
41 | 0 | return AddCollectionLineRule.class; |
42 | |
} |
43 | |
} |