| Organization.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.webservice.samples;
// $Id: Organization.java,v 1.1.2.2 2005/02/12 17:07:37 tdiesler Exp $
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* An example of a service endpoint
*
* @author Thomas.Diesler@jboss.org
* @since 26-Apr-2004
*/
public interface Organization extends Remote
{
String getContactInfo(String organization) throws RemoteException;
Person jobRequest(Person target) throws RemoteException;
}
| Organization.java |