OrganizationHome.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.webservice.samples; // $Id: OrganizationHome.java,v 1.1.2.1 2005/02/11 19:14:35 tdiesler Exp $ import javax.ejb.CreateException; import javax.ejb.EJBHome; import java.rmi.RemoteException; /** * An example of a remote home interface * * @author Thomas.Diesler@jboss.org * @since 26-Apr-2004 */ public interface OrganizationHome extends EJBHome { public OrganizationRemote create() throws CreateException, RemoteException; }
OrganizationHome.java |