Package com.saperion.wf
Class LastTaskInfoImpl
- java.lang.Object
-
- com.saperion.wf.WorkflowDataHolder
-
- com.saperion.wf.LastTaskInfoImpl
-
- All Implemented Interfaces:
LastTaskInfo
,java.io.Serializable
public final class LastTaskInfoImpl extends WorkflowDataHolder implements LastTaskInfo
Last task info class.- Author:
- rbo
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LastTaskInfoImpl(java.util.Map<java.lang.String,java.lang.Object> propertyMap)
Constructor from property map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getActivityId()
java.lang.String
getActivityName()
ActorInfo
getActor()
java.lang.String
getStatusText()
void
writeXML(org.xml.sax.ContentHandler hd, java.lang.String partName)
Writes data as xml part.-
Methods inherited from class com.saperion.wf.WorkflowDataHolder
getDateValue, getIntValue, getStringValue
-
-
-
-
Method Detail
-
writeXML
public void writeXML(org.xml.sax.ContentHandler hd, java.lang.String partName) throws org.xml.sax.SAXException
Writes data as xml part.- Parameters:
hd
- Content handlerpartName
- Part name- Throws:
org.xml.sax.SAXException
- Exception
-
getActivityId
public int getActivityId()
- Specified by:
getActivityId
in interfaceLastTaskInfo
- Returns:
- the activityId
- See Also:
LastTaskInfo.getActivityId()
-
getActivityName
public java.lang.String getActivityName()
- Specified by:
getActivityName
in interfaceLastTaskInfo
- Returns:
- the activity Name
- See Also:
LastTaskInfo.getActivityName()
-
getActor
public ActorInfo getActor()
- Specified by:
getActor
in interfaceLastTaskInfo
- Returns:
- the user
- See Also:
LastTaskInfo.getActor()
-
getStatusText
public java.lang.String getStatusText()
- Specified by:
getStatusText
in interfaceLastTaskInfo
- Returns:
- the statusText
- See Also:
LastTaskInfo.getStatusText()
-
-