Commit c4c67564 authored by pgole's avatar pgole

Updated EJB for auto stock replenishment order button functionality.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103370 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 59ce5104
This source diff could not be displayed because it is too large. You can view the blob instead.
/********************************************************
Title : CustStockOrderLocal[D15ESUN013]
Date : 27/08/16
********************************************************/
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ActionHandlerLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface CustStockOrderLocal extends ActionHandlerLocal
{
public String submit(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
/********************************************************
Title : CustStockOrderRemote[D15ESUN013]
Date : 27/08/16
********************************************************/
package ibase.webitm.ejb.dis.adv;
import java.rmi.RemoteException;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface CustStockOrderRemote extends ActionHandlerRemote
{
public String submit(String tranId, String xtraParams, String forcedFlag) throws RemoteException,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