1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.framework.postprocessor;
17
18 import org.kuali.rice.kew.api.action.ActionTaken;
19
20
21
22
23
24 public class ActionTakenEvent implements IDocumentEvent {
25
26 private static final long serialVersionUID = 2945081851810845704L;
27 private String documentId;
28 private String appDocId;
29 private ActionTaken actionTaken;
30
31 public ActionTakenEvent(String documentId, String appDocId, ActionTaken actionTaken) {
32 this.documentId = documentId;
33 this.appDocId = appDocId;
34 this.actionTaken = actionTaken;
35 }
36
37 public String getDocumentEventCode() {
38 return ACTION_TAKEN;
39 }
40
41 public String getDocumentId() {
42 return documentId;
43 }
44
45 public ActionTaken getActionTaken() {
46 return actionTaken;
47 }
48
49 public String getAppDocId() {
50 return appDocId;
51 }
52
53 }