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 QNameCOMPLEX_TYPEstatic ItemNameF_EXTENSIONstatic ItemNameF_HANDLER_URIstatic ItemNameF_ORIGIN_DESCRIPTIONstatic ItemNameF_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 PrismContainerValueasPrismContainerValue()ExtensionTypebeginExtension()TriggerTypeclone()<X> Xend()booleanequals(Object object)TriggerTypeextension(ExtensionType value)ExtensionTypegetExtension()StringgetHandlerUri()LonggetId()StringgetOriginDescription()XMLGregorianCalendargetTimestamp()TriggerTypehandlerUri(String value)inthashCode()TriggerTypeid(Long value)TriggerTypeoriginDescription(String value)voidsetExtension(ExtensionType value)voidsetHandlerUri(String value)voidsetId(Long value)voidsetOriginDescription(String value)voidsetTimestamp(XMLGregorianCalendar value)voidsetupContainerValue(PrismContainerValue containerValue)Setup value to the containerable representation.TriggerTypetimestamp(String value)TriggerTypetimestamp(XMLGregorianCalendar value)StringtoString()-
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:
asPrismContainerValuein interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:ContainerableSetup 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:
setupContainerValuein 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()
-
-