Class LifecycleStateTransitionType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LifecycleStateTransitionType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class LifecycleStateTransitionType extends Object implements Serializable, Cloneable, Containerable
Specification of lifecycle state transition. EXPERIMENTALJava class for LifecycleStateTransitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LifecycleStateTransitionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}documentation" minOccurs="0"/> <element name="targetState" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="condition" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ExpressionType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_CONDITION
static ItemName
F_DESCRIPTION
static ItemName
F_DOCUMENTATION
static ItemName
F_NAME
static ItemName
F_TARGET_STATE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description LifecycleStateTransitionType()
LifecycleStateTransitionType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
ExpressionType
beginCondition()
LifecycleStateTransitionType
clone()
LifecycleStateTransitionType
condition(ExpressionType value)
LifecycleStateTransitionType
description(String value)
LifecycleStateTransitionType
documentation(String value)
<X> X
end()
boolean
equals(Object object)
ExpressionType
getCondition()
String
getDescription()
String
getDocumentation()
String
getName()
String
getTargetState()
int
hashCode()
LifecycleStateTransitionType
name(String value)
void
setCondition(ExpressionType value)
void
setDescription(String value)
void
setDocumentation(String value)
void
setName(String value)
void
setTargetState(String value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.LifecycleStateTransitionType
targetState(String value)
String
toString()
-
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
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_NAME
public static final ItemName F_NAME
-
F_DESCRIPTION
public static final ItemName F_DESCRIPTION
-
F_DOCUMENTATION
public static final ItemName F_DOCUMENTATION
-
F_TARGET_STATE
public static final ItemName F_TARGET_STATE
-
F_CONDITION
public static final ItemName F_CONDITION
-
-
Constructor Detail
-
LifecycleStateTransitionType
public LifecycleStateTransitionType()
-
LifecycleStateTransitionType
public LifecycleStateTransitionType(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()
-
getName
public String getName()
-
setName
public void setName(String value)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String value)
-
getDocumentation
public String getDocumentation()
-
setDocumentation
public void setDocumentation(String value)
-
getTargetState
public String getTargetState()
-
setTargetState
public void setTargetState(String value)
-
getCondition
public ExpressionType getCondition()
-
setCondition
public void setCondition(ExpressionType value)
-
name
public LifecycleStateTransitionType name(String value)
-
description
public LifecycleStateTransitionType description(String value)
-
documentation
public LifecycleStateTransitionType documentation(String value)
-
targetState
public LifecycleStateTransitionType targetState(String value)
-
condition
public LifecycleStateTransitionType condition(ExpressionType value)
-
beginCondition
public ExpressionType beginCondition()
-
clone
public LifecycleStateTransitionType clone()
-
-