/* ************************************* * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ************************************* */ package org.jboss.injbossaop.ejb; import java.rmi.RemoteException; import javax.ejb.CreateException; import javax.ejb.EJBHome; /** * * @author Kabir Khan * */ public interface ExampleSessionHome extends EJBHome { ExampleSession create() throws CreateException, RemoteException; }