Package com.saperion.intf.wf
Interface HistoryInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
HistoryInfoImpl
public interface HistoryInfo extends java.io.SerializableHistory info interface.- Author:
- rbo
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classHistoryInfo.HistoryKindHistory kind.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActivity()ActorInfogetActor()intgetCommand()CommentInfo[]getComments()intgetError()java.lang.StringgetErrorMsg()ActorInfogetExecutor()intgetIndex()HistoryInfo.HistoryKindgetKind()java.lang.StringgetProcessName()java.util.DategetReceiveDate()java.util.DategetSendDate()java.lang.StringgetTaskDescr()intgetTransition()java.lang.StringgetTransitionDescr()
-
-
-
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
-
-