Commit d729e502 authored by dpawar's avatar dpawar

added new method


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96124 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5d4712a2
...@@ -15,5 +15,6 @@ import javax.ejb.Local; // added for ejb3 ...@@ -15,5 +15,6 @@ import javax.ejb.Local; // added for ejb3
public interface MiscValConfLocal extends ActionHandlerLocal//,EJBObject public interface MiscValConfLocal extends ActionHandlerLocal//,EJBObject
{ {
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException; 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;
} }
...@@ -16,4 +16,5 @@ import javax.ejb.Remote; // added for ejb3 ...@@ -16,4 +16,5 @@ import javax.ejb.Remote; // added for ejb3
public interface MiscValConfRemote extends ActionHandlerRemote//, EJBObject public interface MiscValConfRemote extends ActionHandlerRemote//, EJBObject
{ {
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException; 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;
} }
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