Package org.apache.openejb.jee.wls
Class EntityCache
- java.lang.Object
-
- org.apache.openejb.jee.wls.EntityCache
-
public class EntityCache extends Object
Java class for entity-cache complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="entity-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="max-queries-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="read-timeout-seconds" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="concurrency-strategy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="cache-between-transactions" type="{http://www.bea.com/ns/weblogic/90}true-false" 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 BooleancacheBetweenTransactionsprotected StringconcurrencyStrategyprotected Stringidprotected BigIntegeridleTimeoutSecondsprotected BigIntegermaxBeansInCacheprotected BigIntegermaxQueriesInCacheprotected BigIntegerreadTimeoutSeconds
-
Constructor Summary
Constructors Constructor Description EntityCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetCacheBetweenTransactions()Gets the value of the cacheBetweenTransactions property.StringgetConcurrencyStrategy()Gets the value of the concurrencyStrategy 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.BigIntegergetMaxQueriesInCache()Gets the value of the maxQueriesInCache property.BigIntegergetReadTimeoutSeconds()Gets the value of the readTimeoutSeconds property.voidsetCacheBetweenTransactions(Boolean value)Sets the value of the cacheBetweenTransactions property.voidsetConcurrencyStrategy(String value)Sets the value of the concurrencyStrategy 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.voidsetMaxQueriesInCache(BigInteger value)Sets the value of the maxQueriesInCache property.voidsetReadTimeoutSeconds(BigInteger value)Sets the value of the readTimeoutSeconds property.
-
-
-
Field Detail
-
maxBeansInCache
protected BigInteger maxBeansInCache
-
maxQueriesInCache
protected BigInteger maxQueriesInCache
-
idleTimeoutSeconds
protected BigInteger idleTimeoutSeconds
-
readTimeoutSeconds
protected BigInteger readTimeoutSeconds
-
concurrencyStrategy
protected String concurrencyStrategy
-
cacheBetweenTransactions
protected Boolean cacheBetweenTransactions
-
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
-
getMaxQueriesInCache
public BigInteger getMaxQueriesInCache()
Gets the value of the maxQueriesInCache property.- Returns:
- possible object is
BigInteger
-
setMaxQueriesInCache
public void setMaxQueriesInCache(BigInteger value)
Sets the value of the maxQueriesInCache 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
-
getReadTimeoutSeconds
public BigInteger getReadTimeoutSeconds()
Gets the value of the readTimeoutSeconds property.- Returns:
- possible object is
BigInteger
-
setReadTimeoutSeconds
public void setReadTimeoutSeconds(BigInteger value)
Sets the value of the readTimeoutSeconds property.- Parameters:
value- allowed object isBigInteger
-
getConcurrencyStrategy
public String getConcurrencyStrategy()
Gets the value of the concurrencyStrategy property.- Returns:
- possible object is
String
-
setConcurrencyStrategy
public void setConcurrencyStrategy(String value)
Sets the value of the concurrencyStrategy property.- Parameters:
value- allowed object isString
-
getCacheBetweenTransactions
public Boolean getCacheBetweenTransactions()
Gets the value of the cacheBetweenTransactions property.- Returns:
- possible object is
Boolean
-
setCacheBetweenTransactions
public void setCacheBetweenTransactions(Boolean value)
Sets the value of the cacheBetweenTransactions property.- Parameters:
value- allowed object isBoolean
-
-