OrganizationRemote.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.webservice.samples; // $Id: OrganizationRemote.java,v 1.1.2.1 2005/02/11 19:14:36 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 OrganizationRemote extends EJBObject { String getContactInfo(String organization) throws RemoteException; }
OrganizationRemote.java |