1 37 38 package com.sun.j2ee.blueprints.opc.webservicebroker.provider; 39 40 import java.rmi.Remote ; 41 import java.rmi.RemoteException ; 42 import com.sun.j2ee.blueprints.opc.serviceexceptions.*; 43 44 public interface BrokerServiceIntf extends Remote { 45 public String submitDocument(String xmlDoc) 46 throws InvalidDocumentException, ProcessingException, RemoteException ; 47 } 48 49 | Popular Tags |