01: package edu.iu.uis.eden;
02:
03: import edu.iu.uis.eden.actiontaken.ActionTakenValue;
04:
05: public class ActionTakenEvent implements IDocumentEvent {
06:
07: private static final long serialVersionUID = 2945081851810845704L;
08: private Long routeHeaderId;
09: private String appDocId;
10: private ActionTakenValue actionTaken;
11:
12: public ActionTakenEvent(Long routeHeaderId, String appDocId,
13: ActionTakenValue actionTaken) {
14: this .routeHeaderId = routeHeaderId;
15: this .appDocId = appDocId;
16: this .actionTaken = actionTaken;
17: }
18:
19: public String getDocumentEventCode() {
20: return ACTION_TAKEN;
21: }
22:
23: public Long getRouteHeaderId() {
24: return routeHeaderId;
25: }
26:
27: public ActionTakenValue getActionTaken() {
28: return actionTaken;
29: }
30:
31: public String getAppDocId() {
32: return appDocId;
33: }
34:
35: }
|