FileDocCategorySizeDatePackage
BeanPoolDescriptor.javaAPI DocGlassfish v2 API5416Fri May 04 22:31:50 BST 2007com.sun.enterprise.deployment.runtime

BeanPoolDescriptor

public class BeanPoolDescriptor extends com.sun.enterprise.deployment.Descriptor implements com.sun.enterprise.deployment.DescriptorConstants
iAS specific DD Element (see the ias-ejb-jar_2_0.dtd for this element)
author
Ludo
since
JDK 1.4

Fields Summary
private int
maxPoolSize
private int
poolIdleTimeoutInSeconds
private int
maxWaitTimeInMillis
private int
poolResizeQuantity
private int
steadyPoolSize
Constructors Summary
public BeanPoolDescriptor()
Default constructor.


    
       
      
    
Methods Summary
public intgetMaxPoolSize()
Getter for property maxPoolSize.

return
Value of property maxPoolSize.

        return maxPoolSize;
    
public intgetMaxWaitTimeInMillis()
Getter for property maxWaitTimeInMillis.

return
Value of property maxWaitTimeInMillis.

        return maxWaitTimeInMillis;
    
public intgetPoolIdleTimeoutInSeconds()
Getter for property poolIdleTimeoutInSeconds.

return
Value of property idleTimeoutInSeconds.

        return poolIdleTimeoutInSeconds;
    
public intgetPoolResizeQuantity()
Getter for property poolResizeQuantity

return
Value of property poolResizeQuantity.

        return poolResizeQuantity;
    
public intgetSteadyPoolSize()
Getter for property steadyPoolSize

return
Value of property steadyPoolSize.

        return steadyPoolSize;
    
public voidsetMaxPoolSize(int maxPoolSize)
Setter for property maxPoolSize.

param
maxPoolSize New value of property maxPoolSize.

        this.maxPoolSize = maxPoolSize;
    
public voidsetMaxWaitTimeInMillis(int maxWaitTimeInMillis)
Setter for property maxWaitTimeInMillis.

param
maxWaitTimeInMillis New value of property maxWaitTimeInMillis.

        this.maxWaitTimeInMillis = maxWaitTimeInMillis;
    
public voidsetPoolIdleTimeoutInSeconds(int poolIdleTimeoutInSeconds)
Setter for property poolIdleTimeoutInSeconds.

param
poolIdleTimeoutInSeconds New value of property poolIdleTimeoutInSeconds.

        this.poolIdleTimeoutInSeconds = poolIdleTimeoutInSeconds;
    
public voidsetPoolResizeQuantity(int poolResizeQuantity)
Setter for property poolResizeQuantity.

param
poolResizeQuantity New value of property poolResizeQuantity.

        this.poolResizeQuantity = poolResizeQuantity;
    
public voidsetSteadyPoolSize(int steadyPoolSize)
Setter for property steadyPoolSize.

param
steadyPoolSize New value of property steadyPoolSize.

        this.steadyPoolSize = steadyPoolSize;