Package org.apache.openejb.jee.wls
Class RetryMethodsOnRollback
- java.lang.Object
-
- org.apache.openejb.jee.wls.RetryMethodsOnRollback
-
public class RetryMethodsOnRollback extends Object
Java class for retry-methods-on-rollback complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="retry-methods-on-rollback"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.bea.com/ns/weblogic/90}description" minOccurs="0"/> <element name="retry-count" type="{http://www.w3.org/2001/XMLSchema}integer"/> <element name="method" type="{http://www.bea.com/ns/weblogic/90}method" maxOccurs="unbounded"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Descriptiondescriptionprotected Stringidprotected List<Method>methodprotected BigIntegerretryCount
-
Constructor Summary
Constructors Constructor Description RetryMethodsOnRollback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescriptiongetDescription()Gets the value of the description property.StringgetId()Gets the value of the id property.List<Method>getMethod()Gets the value of the method property.BigIntegergetRetryCount()Gets the value of the retryCount property.voidsetDescription(Description value)Sets the value of the description property.voidsetId(String value)Sets the value of the id property.voidsetRetryCount(BigInteger value)Sets the value of the retryCount property.
-
-
-
Field Detail
-
description
protected Description description
-
retryCount
protected BigInteger retryCount
-
id
protected String id
-
-
Method Detail
-
getDescription
public Description getDescription()
Gets the value of the description property.- Returns:
- possible object is
Description
-
setDescription
public void setDescription(Description value)
Sets the value of the description property.- Parameters:
value- allowed object isDescription
-
getRetryCount
public BigInteger getRetryCount()
Gets the value of the retryCount property.- Returns:
- possible object is
BigInteger
-
setRetryCount
public void setRetryCount(BigInteger value)
Sets the value of the retryCount property.- Parameters:
value- allowed object isBigInteger
-
getMethod
public List<Method> getMethod()
Gets the value of the method property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the method property. For example, to add a new item, do as follows:getMethod().add(newItem);Objects of the following type(s) are allowed in the listMethod
-
-