Commit 131234f6 authored by caluka's avatar caluka

EJB Code for Manual Stock De-allocation Entry Screen Development[W14CSUN004]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95273 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7075a8ba
This diff is collapsed.
/********************************************************
Title : StockDeAllocConfLocal[W14CSUN004]
Date : 10/06/2014
Developer: Chandrashekar
********************************************************/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Local; // added for ejb3
@Local
public interface StockDeAllocConfLocal extends ActionHandlerLocal//,EJBObject
{
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String confirm( String tranId, String xtraParams,String forcedFlag, Connection conn) throws RemoteException,ITMException;
}
/********************************************************
Title : StockDeAllocConfRemote[W14CSUN004]
Date : 10/06/2014
Developer: Chandrashekar
********************************************************/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface StockDeAllocConfRemote extends ActionHandlerRemote//, EJBObject
{
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String confirm( String tranId, String xtraParams,String forcedFlag, Connection conn) throws RemoteException,ITMException;
}
\ No newline at end of file
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