Commit 446192c8 authored by pshinde's avatar pshinde

Ejb for Item Lot Own Copy


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97137 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b740c6ad
This diff is collapsed.
/********************************************************
Title : ItemLotOwnCopyPrcRemote[]
Date : 06/01/15
Developer: Priyanka
********************************************************/
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3`
public interface ItemLotOwnCopyPrcLocal extends ProcessLocal
{
public String process() throws RemoteException,ITMException;
public String process(String string1, String string2, String windowName, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
/********************************************************
Title : ItemLotOwnCopyPrcRemote[]
Date : 06/01/15
Developer: Priyanka
********************************************************/
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface ItemLotOwnCopyPrcRemote extends ProcessRemote
{
public String process() throws RemoteException,ITMException;
public String process(String string1, String string2, String windowName, String xtraParams) 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