1 /* Copyright 2004 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at: 2 http://developer.sun.com/berkeley_license.html 3 $Id: StringPurchaseOrderServiceSEI.java,v 1.2 2005/05/25 03:06:42 smitha Exp $ */ 4 5 package com.sun.j2ee.blueprints.stringposervice; 6 7 import java.rmi.*; 8 9 public interface StringPurchaseOrderServiceSEI extends Remote { 10 11 public String submitPO(String xmlPO) 12 throws InvalidPOException, RemoteException; 13 } 14 15