1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.dto; |
18 | |
|
19 | |
import java.io.Serializable; |
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
public abstract class DocumentEventDTO implements Serializable { |
27 | |
|
28 | |
public static final String ROUTE_LEVEL_CHANGE = "rt_lvl_change"; |
29 | |
public static final String ROUTE_STATUS_CHANGE = "rt_status_change"; |
30 | |
public static final String DELETE_CHANGE = "delete_document"; |
31 | |
public static final String ACTION_TAKEN = "action_taken"; |
32 | |
public static final String BEFORE_PROCESS = "before_process"; |
33 | |
public static final String AFTER_PROCESS = "after_process"; |
34 | |
public static final String LOCK_DOCUMENTS = "lock_documents"; |
35 | |
|
36 | |
private String documentEventCode; |
37 | |
private String documentId; |
38 | |
private String appDocId; |
39 | |
|
40 | 0 | public DocumentEventDTO() {} |
41 | |
|
42 | 0 | public DocumentEventDTO(String documentEventCode) { |
43 | 0 | this.documentEventCode = documentEventCode; |
44 | 0 | } |
45 | |
|
46 | |
public String getAppDocId() { |
47 | 0 | return appDocId; |
48 | |
} |
49 | |
|
50 | |
public void setAppDocId(String appDocId) { |
51 | 0 | this.appDocId = appDocId; |
52 | 0 | } |
53 | |
|
54 | |
public String getDocumentEventCode() { |
55 | 0 | return documentEventCode; |
56 | |
} |
57 | |
|
58 | |
public void setDocumentEventCode(String documentEventCode) { |
59 | 0 | this.documentEventCode = documentEventCode; |
60 | 0 | } |
61 | |
|
62 | |
public String getDocumentId() { |
63 | 0 | return documentId; |
64 | |
} |
65 | |
|
66 | |
public void setDocumentId(String documentId) { |
67 | 0 | this.documentId = documentId; |
68 | 0 | } |
69 | |
|
70 | |
} |