Class RetryLaterReactionType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.RetryLaterReactionType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class RetryLaterReactionType extends Object implements Serializable, Cloneable, Containerable
Processing of the specified account should be retried later.Java class for RetryLaterReactionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RetryLaterReactionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="initialInterval" type="{http://www.w3.org/2001/XMLSchema}duration" minOccurs="0"/> <element name="nextInterval" type="{http://www.w3.org/2001/XMLSchema}duration" minOccurs="0"/> <element name="retryLimit" type="{http://www.w3.org/2001/XMLSchema}int" 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_INITIAL_INTERVAL
static ItemName
F_NEXT_INTERVAL
static ItemName
F_RETRY_LIMIT
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description RetryLaterReactionType()
RetryLaterReactionType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
RetryLaterReactionType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
Duration
getInitialInterval()
Duration
getNextInterval()
Integer
getRetryLimit()
int
hashCode()
RetryLaterReactionType
id(Long value)
RetryLaterReactionType
initialInterval(Duration value)
RetryLaterReactionType
nextInterval(Duration value)
RetryLaterReactionType
retryLimit(Integer value)
void
setId(Long value)
void
setInitialInterval(Duration value)
void
setNextInterval(Duration value)
void
setRetryLimit(Integer value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.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
-
RetryLaterReactionType
public RetryLaterReactionType()
-
RetryLaterReactionType
public RetryLaterReactionType(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()
-
getInitialInterval
public Duration getInitialInterval()
-
setInitialInterval
public void setInitialInterval(Duration value)
-
getNextInterval
public Duration getNextInterval()
-
setNextInterval
public void setNextInterval(Duration value)
-
getRetryLimit
public Integer getRetryLimit()
-
setRetryLimit
public void setRetryLimit(Integer value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
initialInterval
public RetryLaterReactionType initialInterval(Duration value)
-
nextInterval
public RetryLaterReactionType nextInterval(Duration value)
-
retryLimit
public RetryLaterReactionType retryLimit(Integer value)
-
id
public RetryLaterReactionType id(Long value)
-
clone
public RetryLaterReactionType clone()
-
-