1 28 29 package com.caucho.ejb; 30 31 import com.caucho.config.ConfigException; 32 import com.caucho.vfs.Path; 33 34 37 public interface EJBClientInterface { 38 41 public void addEJBJar(Path jar) 42 throws ConfigException; 43 44 47 public Class getEJBHome(String name) 48 throws ConfigException; 49 50 53 public void initEJBs() 54 throws Exception ; 55 } 56 | Popular Tags |