Package org.apache.openejb.jee.wls
Class Pool
- java.lang.Object
-
- org.apache.openejb.jee.wls.Pool
-
public class Pool extends Object
Java class for pool complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="pool"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="max-beans-in-free-pool" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="initial-beans-in-free-pool" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="idle-timeout-seconds" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected BigIntegeridleTimeoutSecondsprotected BigIntegerinitialBeansInFreePoolprotected BigIntegermaxBeansInFreePool
-
Constructor Summary
Constructors Constructor Description Pool()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the value of the id property.BigIntegergetIdleTimeoutSeconds()Gets the value of the idleTimeoutSeconds property.BigIntegergetInitialBeansInFreePool()Gets the value of the initialBeansInFreePool property.BigIntegergetMaxBeansInFreePool()Gets the value of the maxBeansInFreePool property.voidsetId(String value)Sets the value of the id property.voidsetIdleTimeoutSeconds(BigInteger value)Sets the value of the idleTimeoutSeconds property.voidsetInitialBeansInFreePool(BigInteger value)Sets the value of the initialBeansInFreePool property.voidsetMaxBeansInFreePool(BigInteger value)Sets the value of the maxBeansInFreePool property.
-
-
-
Field Detail
-
maxBeansInFreePool
protected BigInteger maxBeansInFreePool
-
initialBeansInFreePool
protected BigInteger initialBeansInFreePool
-
idleTimeoutSeconds
protected BigInteger idleTimeoutSeconds
-
id
protected String id
-
-
Method Detail
-
getMaxBeansInFreePool
public BigInteger getMaxBeansInFreePool()
Gets the value of the maxBeansInFreePool property.- Returns:
- possible object is
BigInteger
-
setMaxBeansInFreePool
public void setMaxBeansInFreePool(BigInteger value)
Sets the value of the maxBeansInFreePool property.- Parameters:
value- allowed object isBigInteger
-
getInitialBeansInFreePool
public BigInteger getInitialBeansInFreePool()
Gets the value of the initialBeansInFreePool property.- Returns:
- possible object is
BigInteger
-
setInitialBeansInFreePool
public void setInitialBeansInFreePool(BigInteger value)
Sets the value of the initialBeansInFreePool property.- Parameters:
value- allowed object isBigInteger
-
getIdleTimeoutSeconds
public BigInteger getIdleTimeoutSeconds()
Gets the value of the idleTimeoutSeconds property.- Returns:
- possible object is
BigInteger
-
setIdleTimeoutSeconds
public void setIdleTimeoutSeconds(BigInteger value)
Sets the value of the idleTimeoutSeconds property.- Parameters:
value- allowed object isBigInteger
-
-