Commit 6f158e1c authored by ssalve's avatar ssalve

Sarita:Source code of EmpITConfPrc on 25 SEPT 2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@191155 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bc80eccc
This diff is collapsed.
/*
Title : DistIssPrcRemote
Date : 07/03/11
Developer: Chandni Shah
*/
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface EmpITConfPrcLocal extends ibase.webitm.ejb.ProcessLocal//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
/*
Title : DistIssPrcRemote
Date : 07/03/11
Developer: Chandni Shah
*/
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import org.w3c.dom.*;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface EmpITConfPrcRemote extends ibase.webitm.ejb.ProcessRemote//, EJBObject
{
public String process() throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String xtraParams) throws RemoteException,ITMException;
public String getData(String xmlString, String xmlString2, 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