Package org.apache.cxf.ws.rm.manager
Class RetryPolicyType
- java.lang.Object
-
- org.apache.cxf.ws.rm.manager.RetryPolicyType
-
public class RetryPolicyType extends Object
Java class for RetryPolicyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RetryPolicyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="maxRetries" type="{http://www.w3.org/2001/XMLSchema}int" default="-1" /> <attribute name="interval" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" default="3000" /> <attribute name="algorithm" type="{http://www.w3.org/2001/XMLSchema}string" default="ExponentialBackoff" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description RetryPolicyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlgorithm()
Gets the value of the algorithm property.long
getInterval()
Gets the value of the interval property.int
getMaxRetries()
Gets the value of the maxRetries property.boolean
isSetAlgorithm()
boolean
isSetInterval()
boolean
isSetMaxRetries()
void
setAlgorithm(String value)
Sets the value of the algorithm property.void
setInterval(Long value)
Sets the value of the interval property.void
setMaxRetries(int value)
Sets the value of the maxRetries property.void
unsetAlgorithm()
void
unsetMaxRetries()
-
-
-
Method Detail
-
setInterval
public void setInterval(Long value)
Sets the value of the interval property.- Parameters:
value
- allowed object isString
-
isSetInterval
public boolean isSetInterval()
-
setMaxRetries
public void setMaxRetries(int value)
Sets the value of the maxRetries property.
-
unsetMaxRetries
public void unsetMaxRetries()
-
isSetMaxRetries
public boolean isSetMaxRetries()
-
getMaxRetries
public int getMaxRetries()
Gets the value of the maxRetries property.
-
getInterval
public long getInterval()
Gets the value of the interval property.
-
setAlgorithm
public void setAlgorithm(String value)
Sets the value of the algorithm property.
-
unsetAlgorithm
public void unsetAlgorithm()
-
isSetAlgorithm
public boolean isSetAlgorithm()
-
getAlgorithm
public String getAlgorithm()
Gets the value of the algorithm property.
-
-