Package com.saperion.intf.wf
Interface SaWfEvent
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaWfEventImpl
public interface SaWfEvent extends java.io.SerializableBean 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.StringgetEventId()Reads the event ID.java.lang.StringgetHDoc()Reads the HDOC for this event.intgetNodeId()Reads the node ID.java.lang.StringgetProcessId()Reads the process ID.java.lang.StringgetSysRowId()Reads the SysRowId.longgetSysTimeStamp()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
-
-