Package com.sun.enterprise.deployment
Interface DescriptorConstants
-
- All Known Implementing Classes:
BeanCacheDescriptor,BeanPoolDescriptor
public interface DescriptorConstantsContains all deployment descriptor constants.- Since:
- JDK1.4
- Author:
- Nazrul Islam
-
-
Field Summary
Fields Modifier and Type Field Description static intCACHE_IDLE_TIMEOUT_DEFAULTBean Cache - idle bean instance in a pool becomes a candidate for passivation (sfsb/eb) or deletion (slsb), when this timeout expires.static intMAX_CACHE_SIZE_DEFAULTBean Cache - sfsb and eb are created and cached, on demand.static StringMAX_POOL_SIZEBean Pool - maximum size, a pool of slsb can grow to.static intMAX_POOL_SIZE_DEFAULTstatic StringMAX_WAIT_TIMEBean Pool - maximum time a caller will have to wait when pool has reached maximum configured size and an instance is not available to process the incoming request.static intMAX_WAIT_TIME_DEFAULTstatic StringPOOL_IDLE_TIMEOUTBean Pool - idle bean instance in a pool becomes a candidate for passivation (sfsb/eb) or deletion (slsb), when this timeout expires.static intPOOL_IDLE_TIMEOUT_DEFAULTstatic StringPOOL_RESIZE_QTYBean Pool - size of slsb pool grows in increments specified by resize-quantity, within the configured upper limit max-pool-size.static intPOOL_RESIZE_QTY_DEFAULTstatic intREFRESH_PERIOD_IN_SECONDS_DEFAULTejb - refresh period in secondsstatic intREMOVAL_TIMEOUT_DEFAULTBean Cache - Passivated bean (sfsb/eb) instance is removed if it is not accesed within this time, after passivationstatic intRESIZE_QUANTITY_DEFAULTBean Cache - resize quantitystatic StringSTEADY_POOL_SIZEBean Pool - minimum number of slsb instances maintained in a pool.static intSTEADY_POOL_SIZE_DEFAULT
-
-
-
Field Detail
-
MAX_POOL_SIZE
static final String MAX_POOL_SIZE
Bean Pool - maximum size, a pool of slsb can grow to.- See Also:
- Constant Field Values
-
MAX_POOL_SIZE_DEFAULT
static final int MAX_POOL_SIZE_DEFAULT
- See Also:
- Constant Field Values
-
MAX_WAIT_TIME
static final String MAX_WAIT_TIME
Bean Pool - maximum time a caller will have to wait when pool has reached maximum configured size and an instance is not available to process the incoming request.- See Also:
- Constant Field Values
-
MAX_WAIT_TIME_DEFAULT
static final int MAX_WAIT_TIME_DEFAULT
- See Also:
- Constant Field Values
-
POOL_RESIZE_QTY
static final String POOL_RESIZE_QTY
Bean Pool - size of slsb pool grows in increments specified by resize-quantity, within the configured upper limit max-pool-size.- See Also:
- Constant Field Values
-
POOL_RESIZE_QTY_DEFAULT
static final int POOL_RESIZE_QTY_DEFAULT
- See Also:
- Constant Field Values
-
STEADY_POOL_SIZE
static final String STEADY_POOL_SIZE
Bean Pool - minimum number of slsb instances maintained in a pool.- See Also:
- Constant Field Values
-
STEADY_POOL_SIZE_DEFAULT
static final int STEADY_POOL_SIZE_DEFAULT
- See Also:
- Constant Field Values
-
POOL_IDLE_TIMEOUT
static final String POOL_IDLE_TIMEOUT
Bean Pool - idle bean instance in a pool becomes a candidate for passivation (sfsb/eb) or deletion (slsb), when this timeout expires.- See Also:
- Constant Field Values
-
POOL_IDLE_TIMEOUT_DEFAULT
static final int POOL_IDLE_TIMEOUT_DEFAULT
- See Also:
- Constant Field Values
-
MAX_CACHE_SIZE_DEFAULT
static final int MAX_CACHE_SIZE_DEFAULT
Bean Cache - sfsb and eb are created and cached, on demand.- See Also:
- Constant Field Values
-
RESIZE_QUANTITY_DEFAULT
static final int RESIZE_QUANTITY_DEFAULT
Bean Cache - resize quantity- See Also:
- Constant Field Values
-
REMOVAL_TIMEOUT_DEFAULT
static final int REMOVAL_TIMEOUT_DEFAULT
Bean Cache - Passivated bean (sfsb/eb) instance is removed if it is not accesed within this time, after passivation- See Also:
- Constant Field Values
-
CACHE_IDLE_TIMEOUT_DEFAULT
static final int CACHE_IDLE_TIMEOUT_DEFAULT
Bean Cache - idle bean instance in a pool becomes a candidate for passivation (sfsb/eb) or deletion (slsb), when this timeout expires.- See Also:
- Constant Field Values
-
REFRESH_PERIOD_IN_SECONDS_DEFAULT
static final int REFRESH_PERIOD_IN_SECONDS_DEFAULT
ejb - refresh period in seconds- See Also:
- Constant Field Values
-
-