Commit 527a79a0 authored by kshinde's avatar kshinde

Receipt Dishonour auto confirm changes and bug fix

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@196165 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9ad164ea
......@@ -11,6 +11,7 @@ import javax.ejb.Local;
@Local
public interface ReceiptDishonourConfLocal extends ActionHandlerLocal {
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;//added by vishakha
public String confirm(String tranId,String xtraParams,String forcedFlag,Connection conn,boolean isPreview) throws RemoteException,ITMException;//added by vishakha
......
......@@ -11,6 +11,7 @@ import javax.ejb.Remote;
@Remote
public interface ReceiptDishonourConfRemote extends ActionHandlerRemote {
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;//added by vishakha
public String confirm(String tranId,String xtraParams,String forcedFlag,Connection conn,boolean isPreview) throws RemoteException,ITMException;//added by vishakha
......
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