Class TriggerType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.TriggerType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class TriggerType extends Object implements Serializable, Cloneable, Containerable
Defines triggers for an object. Trigger is an action that should take place at specified time or under some other condition.Java class for TriggerType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TriggerType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="handlerUri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> <element name="originDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}extension" 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_EXTENSION
static ItemName
F_HANDLER_URI
static ItemName
F_ORIGIN_DESCRIPTION
static ItemName
F_TIMESTAMP
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description TriggerType()
TriggerType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
ExtensionType
beginExtension()
TriggerType
clone()
<X> X
end()
boolean
equals(Object object)
TriggerType
extension(ExtensionType value)
ExtensionType
getExtension()
String
getHandlerUri()
Long
getId()
String
getOriginDescription()
XMLGregorianCalendar
getTimestamp()
TriggerType
handlerUri(String value)
int
hashCode()
TriggerType
id(Long value)
TriggerType
originDescription(String value)
void
setExtension(ExtensionType value)
void
setHandlerUri(String value)
void
setId(Long value)
void
setOriginDescription(String value)
void
setTimestamp(XMLGregorianCalendar value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.TriggerType
timestamp(String value)
TriggerType
timestamp(XMLGregorianCalendar 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
-
-
-
-
Constructor Detail
-
TriggerType
public TriggerType()
-
TriggerType
public TriggerType(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()
-
getTimestamp
public XMLGregorianCalendar getTimestamp()
-
setTimestamp
public void setTimestamp(XMLGregorianCalendar value)
-
getHandlerUri
public String getHandlerUri()
-
setHandlerUri
public void setHandlerUri(String value)
-
getOriginDescription
public String getOriginDescription()
-
setOriginDescription
public void setOriginDescription(String value)
-
getExtension
public ExtensionType getExtension()
-
setExtension
public void setExtension(ExtensionType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
timestamp
public TriggerType timestamp(XMLGregorianCalendar value)
-
timestamp
public TriggerType timestamp(String value)
-
handlerUri
public TriggerType handlerUri(String value)
-
originDescription
public TriggerType originDescription(String value)
-
extension
public TriggerType extension(ExtensionType value)
-
beginExtension
public ExtensionType beginExtension()
-
id
public TriggerType id(Long value)
-
clone
public TriggerType clone()
-
-