Commit 71e7911d authored by ssalve's avatar ssalve

Sarita: Committed Source code SRLContainerSplit.java on 28FEB2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@181183 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fa3089dc
This diff is collapsed.
/**
* PURPOSE : Local Interface
* Author :Sumit Sarkar
*/
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import java.sql.*;
import java.rmi.RemoteException;
// The local interface declares all the utility functions to be used in your EJB component
@javax.ejb.Local
public interface SRLContainerSplitLocal extends ActionHandlerLocal//ValidatorLocal
{
public String confirm()throws RemoteException,ITMException;
//public String actionHandler(String actionType, String xmlString, String xmlString1, String xmlString2 ,String objContext, String xtraParams)throws RemoteException,ITMException;
public String confirm(String tranID,String xtraParams, String forcedFlag)throws RemoteException,ITMException;
}
/**
* PURPOSE : Remote Interface
* Author : Sumit Sarkar
*/
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import java.sql.*;
import java.rmi.RemoteException;
// The remote interface declares all the utility functions to be used in your EJB component
@javax.ejb.Remote
public interface SRLContainerSplitRemote extends ActionHandlerRemote//, EJBObject
{
public String confirm()throws RemoteException,ITMException;
//public String actionHandler(String actionType, String xmlString, String xmlString1, String xmlString2 ,String objContext, String xtraParams)throws RemoteException,ITMException;
public String confirm(String tranID,String xtraParams, String forcedFlag)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