| 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.framework.postprocessor.IDocumentEvent; |
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
public class AfterProcessEvent implements IDocumentEvent { |
| 25 | |
|
| 26 | |
private static final long serialVersionUID = 2945081851810845704L; |
| 27 | |
private String documentId; |
| 28 | |
private String nodeInstanceId; |
| 29 | |
private String appDocId; |
| 30 | |
private boolean successfullyProcessed; |
| 31 | |
|
| 32 | 0 | public AfterProcessEvent(String documentId, String appDocId, String nodeInstanceId, boolean successfullyProcessed) { |
| 33 | 0 | this.documentId = documentId; |
| 34 | 0 | this.appDocId = appDocId; |
| 35 | 0 | this.nodeInstanceId = nodeInstanceId; |
| 36 | 0 | this.successfullyProcessed = successfullyProcessed; |
| 37 | 0 | } |
| 38 | |
|
| 39 | |
public String getNodeInstanceId() { |
| 40 | 0 | return nodeInstanceId; |
| 41 | |
} |
| 42 | |
|
| 43 | |
public String getDocumentId() { |
| 44 | 0 | return documentId; |
| 45 | |
} |
| 46 | |
|
| 47 | |
public String getAppDocId() { |
| 48 | 0 | return appDocId; |
| 49 | |
} |
| 50 | |
|
| 51 | |
public boolean isSuccessfullyProcessed() { |
| 52 | 0 | return this.successfullyProcessed; |
| 53 | |
} |
| 54 | |
|
| 55 | |
public String getDocumentEventCode() { |
| 56 | 0 | return IDocumentEvent.AFTER_PROCESS; |
| 57 | |
} |
| 58 | |
|
| 59 | |
} |