FileDocCategorySizeDatePackage
StatelessDelegateWrapper.javaAPI DocJBoss 4.2.12023Fri Jul 13 20:53:52 BST 2007org.jboss.ejb3.stateless

StatelessDelegateWrapper

public class StatelessDelegateWrapper extends org.jboss.ejb3.ServiceDelegateWrapper implements StatelessDelegateWrapperMBean
author
William DeCoste

Fields Summary
Constructors Summary
public StatelessDelegateWrapper(Object delegate)

	   super(delegate);
   
Methods Summary
public intgetAvailableCount()

	   return ((StatelessContainer)delegate).getPool().getAvailableCount();
   
public intgetCreateCount()

      return ((StatelessContainer)delegate).getPool().getCreateCount();
   
public intgetCurrentSize()

	   return ((StatelessContainer)delegate).getPool().getCurrentSize();
   
public intgetMaxSize()

	   return ((StatelessContainer)delegate).getPool().getMaxSize();
   
public intgetRemoveCount()

      return ((StatelessContainer)delegate).getPool().getRemoveCount();