Package com.saperion.intf.wf
Interface SaWfEvent
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaWfEventImpl
public interface SaWfEvent extends java.io.Serializable
Bean interface for an event. The event is fired every time when the workflow raise an event. The event consists of- SYSROWID;
- HDOC revisons number;
- Process ID;
- Event ID;
- Node ID;
- SysTimwStamp;
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEventId()
Reads the event ID.java.lang.String
getHDoc()
Reads the HDOC for this event.int
getNodeId()
Reads the node ID.java.lang.String
getProcessId()
Reads the process ID.java.lang.String
getSysRowId()
Reads the SysRowId.long
getSysTimeStamp()
Reads the SysTimeStamp.
-
-
-
Method Detail
-
getSysRowId
java.lang.String getSysRowId()
Reads the SysRowId.- Returns:
- SysRowId
-
getHDoc
java.lang.String getHDoc()
Reads the HDOC for this event.- Returns:
- hDoc
-
getProcessId
java.lang.String getProcessId()
Reads the process ID.- Returns:
- process ID
-
getEventId
java.lang.String getEventId()
Reads the event ID.- Returns:
- EventId
-
getNodeId
int getNodeId()
Reads the node ID.- Returns:
- Node ID
-
getSysTimeStamp
long getSysTimeStamp()
Reads the SysTimeStamp.- Returns:
- SysTimeStamp
-
-