FileDocCategorySizeDatePackage
StatefulDelegateWrapper.javaAPI DocJBoss 4.2.12390Fri Jul 13 20:53:50 BST 2007org.jboss.ejb3.stateful

StatefulDelegateWrapper

public class StatefulDelegateWrapper extends org.jboss.ejb3.ServiceDelegateWrapper implements StatefulDelegateWrapperMBean
author
William DeCoste

Fields Summary
Constructors Summary
public StatefulDelegateWrapper(Object delegate)

	   super(delegate);
   
Methods Summary
public intgetAvailableCount()

      return ((StatefulContainer)delegate).getCache().getAvailableCount();
   
public intgetCacheSize()

	   return ((StatefulContainer)delegate).getCache().getCacheSize();
   
public intgetCreateCount()

	   return ((StatefulContainer)delegate).getCache().getCreateCount();
   
public intgetCurrentSize()

      return ((StatefulContainer)delegate).getCache().getCurrentSize();
   
public intgetMaxSize()

      return ((StatefulContainer)delegate).getCache().getMaxSize();
   
public intgetPassivatedCount()

	   return ((StatefulContainer)delegate).getCache().getPassivatedCount();
   
public intgetRemoveCount()

      return ((StatefulContainer)delegate).getCache().getRemoveCount();
   
public intgetTotalSize()

      return ((StatefulContainer)delegate).getCache().getTotalSize();