OrganizationService.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.webservice.samples; // $Id: OrganizationService.java,v 1.1.2.1 2005/02/11 19:14:37 tdiesler Exp $ import javax.xml.rpc.Service; import javax.xml.rpc.ServiceException; /** * An example of a service interface * * @author Thomas.Diesler@jboss.org * @since 26-Apr-2004 */ public interface OrganizationService extends Service { public Organization getOrganizationPort() throws ServiceException; }
OrganizationService.java |