1 22 package org.jboss.ejb3.test.interceptors2; 23 24 import java.util.ArrayList ; 25 26 import javax.ejb.Remote ; 27 28 33 @Remote  34 public interface StatusRemote 35 { 36 void clear(); 37 38 ArrayList <Interception> getInterceptions(); 39 40 void addInterception(Interception intercepted); 41 42 void addLifecycle(Class type, Interception intercepted); 43 44 public ArrayList <Interception> getPostActivates(); 45 46 public ArrayList <Interception> getPostConstructs(); 47 48 public ArrayList <Interception> getPreDestroys(); 49 50 public ArrayList <Interception> getPrePassivates(); 51 } 52 | Popular Tags |