package pl.ibpolsoft.sop.client.service; import javax.naming.NamingException; /** * * @author witoldsz */ public interface EjbLookup { String defaultBeanName(Class remoteInterface); T getBean(Class remoteInterface) throws NamingException; T getBean(Class remoteInterface, String beanName) throws NamingException; }