Commit 6a3b7fc2 authored by sbehera's avatar sbehera

Stock Transfer Conf EJB is added for viewing accounting effect, and is...

Stock Transfer Conf EJB is added for viewing accounting effect, and is migrated from pb component to java.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93408 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5a3c7c5e
This diff is collapsed.
/*
Purpose: Local Interface created for StockTransferConf Component
Author: Gulzar on 13/09/11
*/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Local
public interface StockTransferConfLocal extends ActionHandlerLocal
{
public String confirm( String tranId, String xtraParams, String forcedFlag )throws RemoteException,ITMException;
//added by chitranjan for call confirm method
public String confirm( String tranId, String xtraParams,String forcedFlag, Connection conn, boolean connStatus) throws RemoteException,ITMException;
}
/*
Purpose: Remote Interface created for StockTransferConf Component
Author: Gulzar on 13/09/11
*/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Remote
public interface StockTransferConfRemote extends ActionHandlerRemote
{
public String confirm( String tranId, String xtraParams, String forcedFlag ) throws RemoteException,ITMException;
//added by chitranjan for call confirm method
public String confirm( String tranId, String xtraParams,String forcedFlag, Connection conn, boolean connStatus) 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