Commit 9b18aa03 authored by nkhan's avatar nkhan

Migrate the nvo_business_object_sord_canc to SorderCancel.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104384 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1750efef
This diff is collapsed.
/********************************************************
Title : SorderCancelLocal
Date : 27/SEP/16
Developer: Nasruddin Khan
********************************************************/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Local;
@Local
public interface SorderCancelLocal extends ActionHandlerLocal
{
public String confirm(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
\ No newline at end of file
/********************************************************
Title : SorderCancelRemote
Date : 26/SEP/16
Developer: Nasruddin Khan
********************************************************/
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Remote;
@Remote
public interface SorderCancelRemote extends ActionHandlerRemote
{
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