FileDocCategorySizeDatePackage
TellerInterceptor.javaAPI DocJBoss 4.2.11828Fri Jul 13 20:53:28 BST 2007org.jboss.ejb3.test.bank

TellerInterceptor

public class TellerInterceptor extends Object implements org.jboss.aop.advice.Interceptor, Serializable
Comment
author
William DeCoste
version
$Revision: 60233 $

Fields Summary
private static final Logger
log
public static boolean
accessed
Constructors Summary
public TellerInterceptor()

   
    
   
   
Methods Summary
public java.lang.StringgetName()

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

      try 
      {
         return invocation.invokeNext();
      } 
      finally
      {
         accessed = true;
      }