Commit 0a075c17 authored by ssalve's avatar ssalve

Sarita: Added new source code SorderStatusEJB , SorderStatusEJBLocal and...

Sarita: Added new source code SorderStatusEJB , SorderStatusEJBLocal and SorderStatusEJBRemote.java files on 30NOV2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@174870 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 2bee063e
This diff is collapsed.
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Local;
import org.w3c.dom.Document;
@Local
public interface SorderStatusEJBLocal extends ValidatorLocal
{
public String getSorderStatusXML(String saleOrder,String ref_series)throws ITMException;
}
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
@Remote
public interface SorderStatusEJBRemote extends ValidatorRemote
{
public String getSorderStatusXML(String saleOrder,String ref_series)throws ITMException;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment