Commit 15f39383 authored by manohar's avatar manohar

This commit was generated by cvs2svn to compensate for changes in r311,

which included commits to RCS files with non-trunk default branches.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91376 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 006e991c
This diff is collapsed.
package ibase.webitm.ejb.mfg;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local; // added for ejb3
//public interface CopyOrgStructure extends ProcessLocal, EJBObject
@Local // added for ejb3
public interface CopyProcRouteLocal extends ProcessLocal
{
public String process() throws RemoteException,ITMException;
//public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.mfg;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote; // added for ejb3
//public interface CopyOrgStructureRemote extends ProcessRemote, EJBObject
@Remote // added for ejb3
public interface CopyProcRouteRemote extends ProcessRemote
{
public String process() throws RemoteException,ITMException;
//public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, 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