KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > j2ee > blueprints > stringposervice > StringPurchaseOrderServiceSEI


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 JavaDoc submitPO(String JavaDoc xmlPO)
12                                 throws InvalidPOException, RemoteException;
13 }
14
15
Popular Tags