Commit f4dda0d9 authored by smanohar's avatar smanohar

Components missing in repository taken from class file contained in the jar

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@196097 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 979a6c0d
This diff is collapsed.
This diff is collapsed.
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Local;
@Local
public abstract interface POBWizSRConfLocal extends ActionHandlerLocal
{
public String pobConfirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String pobConfirm(String tranId, String xtraParams, String forcedFlag, String userInfoStr) throws RemoteException,ITMException;
//public String submit(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String confirm(String tranId, String xtraParams,String forcedFlag) throws RemoteException, ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Remote;
@Remote
public abstract interface POBWizSRConfRemote extends ActionHandlerRemote
{
public String pobConfirm(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String pobConfirm(String tranId, String xtraParams, String forcedFlag, String userInfoStr) throws RemoteException,ITMException;
//public String submit(String tranId, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
public String confirm(String tranId, String xtraParams,String forcedFlag) 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