Package org.apache.openejb.jee.wls
Class StatefulSessionCache
- java.lang.Object
-
- org.apache.openejb.jee.wls.StatefulSessionCache
-
public class StatefulSessionCache extends Object
Java class for stateful-session-cache complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="stateful-session-cache"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="max-beans-in-cache" 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"/> <element name="session-timeout-seconds" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="cache-type" type="{http://www.w3.org/2001/XMLSchema}string" 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 StringcacheTypeprotected Stringidprotected BigIntegeridleTimeoutSecondsprotected BigIntegermaxBeansInCacheprotected BigIntegersessionTimeoutSeconds
-
Constructor Summary
Constructors Constructor Description StatefulSessionCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCacheType()Gets the value of the cacheType property.StringgetId()Gets the value of the id property.BigIntegergetIdleTimeoutSeconds()Gets the value of the idleTimeoutSeconds property.BigIntegergetMaxBeansInCache()Gets the value of the maxBeansInCache property.BigIntegergetSessionTimeoutSeconds()Gets the value of the sessionTimeoutSeconds property.voidsetCacheType(String value)Sets the value of the cacheType property.voidsetId(String value)Sets the value of the id property.voidsetIdleTimeoutSeconds(BigInteger value)Sets the value of the idleTimeoutSeconds property.voidsetMaxBeansInCache(BigInteger value)Sets the value of the maxBeansInCache property.voidsetSessionTimeoutSeconds(BigInteger value)Sets the value of the sessionTimeoutSeconds property.
-
-
-
Field Detail
-
maxBeansInCache
protected BigInteger maxBeansInCache
-
idleTimeoutSeconds
protected BigInteger idleTimeoutSeconds
-
sessionTimeoutSeconds
protected BigInteger sessionTimeoutSeconds
-
cacheType
protected String cacheType
-
id
protected String id
-
-
Method Detail
-
getMaxBeansInCache
public BigInteger getMaxBeansInCache()
Gets the value of the maxBeansInCache property.- Returns:
- possible object is
BigInteger
-
setMaxBeansInCache
public void setMaxBeansInCache(BigInteger value)
Sets the value of the maxBeansInCache 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
-
getSessionTimeoutSeconds
public BigInteger getSessionTimeoutSeconds()
Gets the value of the sessionTimeoutSeconds property.- Returns:
- possible object is
BigInteger
-
setSessionTimeoutSeconds
public void setSessionTimeoutSeconds(BigInteger value)
Sets the value of the sessionTimeoutSeconds property.- Parameters:
value- allowed object isBigInteger
-
getCacheType
public String getCacheType()
Gets the value of the cacheType property.- Returns:
- possible object is
String
-
setCacheType
public void setCacheType(String value)
Sets the value of the cacheType property.- Parameters:
value- allowed object isString
-
-