Commit fbb39d40 authored by manohar's avatar manohar

stockallocprc copy from dis removed


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91778 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 768a9ac6
This diff is collapsed.
/********************************************************
Title : StockAllocPrc
Date : 04/12/2011
Developer: Dipak Chattar
********************************************************/
package ibase.webitm.ejb.dis;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Local; // added for ejb3
@Local
public interface StockAllocPrcLocal extends ActionHandlerLocal//,EJBObject
{
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
\ No newline at end of file
/********************************************************
Title : StockAllocPrc
Date : 04/12/2011
Developer: Dipak Chattar
********************************************************/
package ibase.webitm.ejb.dis;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface StockAllocPrcRemote extends ActionHandlerRemote//, EJBObject
{
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