Class TaskActivityStateType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.TaskActivityStateType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class TaskActivityStateType extends Object implements Serializable, Cloneable, Containerable
Describes the state of the activity or activities embedded in the task (and its subtasks - in the case of a root task).Java class for TaskActivityStateType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TaskActivityStateType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="localRoot" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ActivityPathType" minOccurs="0"/> <element name="taskRole" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}TaskRoleType" minOccurs="0"/> <element name="activity" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ActivityStateType" minOccurs="0"/> <element name="tree" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ActivityTreeStateType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_ACTIVITY
static ItemName
F_LOCAL_ROOT
static ItemName
F_TASK_ROLE
static ItemName
F_TREE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description TaskActivityStateType()
TaskActivityStateType(PrismContext prismContext)
-
Method Summary
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
TaskActivityStateType
public TaskActivityStateType()
-
TaskActivityStateType
public TaskActivityStateType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getLocalRoot
public ActivityPathType getLocalRoot()
-
setLocalRoot
public void setLocalRoot(ActivityPathType value)
-
getTaskRole
public TaskRoleType getTaskRole()
-
setTaskRole
public void setTaskRole(TaskRoleType value)
-
getActivity
public ActivityStateType getActivity()
-
setActivity
public void setActivity(ActivityStateType value)
-
getTree
public ActivityTreeStateType getTree()
-
setTree
public void setTree(ActivityTreeStateType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
localRoot
public TaskActivityStateType localRoot(ActivityPathType value)
-
beginLocalRoot
public ActivityPathType beginLocalRoot()
-
taskRole
public TaskActivityStateType taskRole(TaskRoleType value)
-
activity
public TaskActivityStateType activity(ActivityStateType value)
-
beginActivity
public ActivityStateType beginActivity()
-
tree
public TaskActivityStateType tree(ActivityTreeStateType value)
-
beginTree
public ActivityTreeStateType beginTree()
-
id
public TaskActivityStateType id(Long value)
-
clone
public TaskActivityStateType clone()
-
-