1 22 package org.jboss.tutorial.interceptor.bean; 23 24 import javax.interceptor.AroundInvoke; 25 import javax.interceptor.InvocationContext; 26 27 32 public class AccountsInterceptor 33 { 34 @AroundInvoke 35 public Object intercept(InvocationContext ctx) throws Exception  36 { 37 System.out.println("*** AccountsInterceptor intercepting " + ctx.getMethod().getName()); 38 try 39 { 40 return ctx.proceed(); 41 } 42 finally 43 { 44 System.out.println("*** AccountsInterceptor exiting"); 45 } 46 } 47 } 48 | Popular Tags |