Commit 3740c8cb authored by agaikwad's avatar agaikwad

Request_id-D15IUNI001


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100048 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1d90c1a0
This diff is collapsed.
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local;
@Local // added for ejb3
public interface InvPackUndoLocal extends ProcessLocal
{
public String process() throws RemoteException,ITMException;
public String process(String string1, String string2, String windowName, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessRemote;
import javax.ejb.Remote;
@Remote // added for ejb3`
public interface InvPackUndoRemote 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