Package com.saperion.intf.wf
Interface HistoryInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
HistoryInfoImpl
public interface HistoryInfo extends java.io.Serializable
History info interface.- Author:
- rbo
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HistoryInfo.HistoryKind
History kind.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getActivity()
ActorInfo
getActor()
int
getCommand()
CommentInfo[]
getComments()
int
getError()
java.lang.String
getErrorMsg()
ActorInfo
getExecutor()
int
getIndex()
HistoryInfo.HistoryKind
getKind()
java.lang.String
getProcessName()
java.util.Date
getReceiveDate()
java.util.Date
getSendDate()
java.lang.String
getTaskDescr()
int
getTransition()
java.lang.String
getTransitionDescr()
-
-
-
Method Detail
-
getIndex
int getIndex()
- Returns:
- the index
-
getReceiveDate
java.util.Date getReceiveDate()
- Returns:
- the receiveDate
-
getSendDate
java.util.Date getSendDate()
- Returns:
- the sendDate
-
getTransition
int getTransition()
- Returns:
- the transition
-
getActivity
int getActivity()
- Returns:
- the activity
-
getCommand
int getCommand()
- Returns:
- the command
-
getKind
HistoryInfo.HistoryKind getKind()
- Returns:
- the kind
-
getExecutor
ActorInfo getExecutor()
- Returns:
- the executor
-
getActor
ActorInfo getActor()
- Returns:
- the actor
-
getTransitionDescr
java.lang.String getTransitionDescr()
- Returns:
- the transitionDescr
-
getTaskDescr
java.lang.String getTaskDescr()
- Returns:
- the taskDescr
-
getError
int getError()
- Returns:
- the error
-
getErrorMsg
java.lang.String getErrorMsg()
- Returns:
- the errorMsg
-
getComments
CommentInfo[] getComments()
- Returns:
- the comments
-
getProcessName
java.lang.String getProcessName()
- Returns:
- process name
-
-