1 22 package org.jboss.ejb3.test.regression.ejbthree376; 23 24 import org.jboss.annotation.ejb.Service; 25 26 31 @Service 32 public class StatusBean implements StatusRemote 33 { 34 static boolean interceptorIntercepted; 35 static boolean beanIntercepted; 36 37 public boolean getBeanIntercepted() 38 { 39 return beanIntercepted; 40 } 41 42 public boolean getInterceptorIntercepted() 43 { 44 return interceptorIntercepted; 45 } 46 47 public void clear() 48 { 49 interceptorIntercepted = false; 50 beanIntercepted = false; 51 } 52 } 53 | Popular Tags |