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