1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.postprocessor;
17
18 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
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 ActionTakenValue actionTaken;
30
31 public ActionTakenEvent(String documentId, String appDocId, ActionTakenValue 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 ActionTakenValue getActionTaken() {
46 return actionTaken;
47 }
48
49 public String getAppDocId() {
50 return appDocId;
51 }
52
53 }