FileDocCategorySizeDatePackage
AllowedOperationsInterceptor.javaAPI DocJBoss 4.2.11819Fri Jul 13 20:53:58 BST 2007org.jboss.ejb3

AllowedOperationsInterceptor

public class AllowedOperationsInterceptor extends Object implements org.jboss.aop.advice.Interceptor
author
Kabir Khan
version
$Revision: 60233 $

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetName()

      return "AllowedOperationsInterceptor";
   
public java.lang.Objectinvoke(org.jboss.aop.joinpoint.Invocation invocation)

      try
      {
         AllowedOperationsAssociation.pushInMethodFlag(AllowedOperationsFlags.IN_EJB_TIMEOUT);
         return invocation.invokeNext();
      }
      finally
      {
         AllowedOperationsAssociation.popInMethodFlag();
      }