| OrganizationClientHome.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.webservice.samples;
// $Id: OrganizationClientHome.java,v 1.1.2.1 2005/02/11 19:14:32 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 OrganizationClientHome extends EJBHome
{
public OrganizationClientRemote create() throws CreateException, RemoteException;
}
| OrganizationClientHome.java |