1 22 package org.jboss.ejb3; 23 24 import java.util.Hashtable ; 25 import java.util.List ; 26 import javassist.bytecode.ClassFile; 27 28 35 public interface Ejb3Handler 36 { 37 boolean isEjb(); 38 39 boolean isJBossBeanType(); 40 41 List <Container> getContainers(ClassFile cf, Ejb3Deployment deployment) throws Exception ; 42 43 void setCtxProperties(Hashtable ctxProperties); 44 } 45 | Popular Tags |