Commit 4727692d authored by ssalve's avatar ssalve

Added source code for CostCtrAllocPosEJB on 17OCT2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@172057 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f7dd3f88
This diff is collapsed.
/*
* Author:Wasim Ansari
* Date:30-08-2016
* Request ID:S16EBAS006 (ETA Wizard)
*/
package ibase.webitm.ejb.fin.adv;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Local;
@Local
public interface CostCtrAllocPosEJBLocal extends ValidatorLocal
{
public String postSave(String xmlStringAll, String tranId, String editFlag, String xtraParams, Connection conn) throws RemoteException,ITMException;
}
/*
* Author:Wasim Ansari
* Date:30-08-2016
* Request ID:S16EBAS006 (ETA Wizard)
*/
package ibase.webitm.ejb.fin.adv;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Remote;
@Remote
public interface CostCtrAllocPosEJBRemote extends ValidatorRemote
{
public String postSave(String xmlStringAll, String tranId, String editFlag, String xtraParams, Connection conn) 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