Commit 3cdc9a7a authored by vkadam's avatar vkadam

EJB for Consumption Order / Issue [D15BSUN017]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98278 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7e2ac297
This diff is collapsed.
/**
* VALLABH KADAM
* 15/JUN/15
* Req Id:- [D15BSUN017]
* */
package ibase.webitm.ejb.mfg;
import javax.ejb.Local;
import java.rmi.RemoteException;
import org.w3c.dom.*;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
@javax.ejb.Local
public interface ConsumptionOdrIssuWizIcLocal extends ValidatorLocal
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2,String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
/**
* VALLABH KADAM
* 15/JUN/15
* Req Id:- [D15BSUN017]
* */
package ibase.webitm.ejb.mfg;
import javax.ejb.Remote;
import java.rmi.RemoteException;
import org.w3c.dom.*;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
@javax.ejb.Remote
public interface ConsumptionOdrIssuWizIcRemote extends ValidatorRemote
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2,String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
This diff is collapsed.
/********************************************************
Title : ConsumptionOdrIssuWizPos[D15BSUN017]
Date : 22/JUN/15
Developer: VALLABH KADAM.
********************************************************/
package ibase.webitm.ejb.mfg;
import java.rmi.RemoteException;
import java.sql.Connection;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ValidatorLocal;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface ConsumptionOdrIssuWizPosLocal extends ValidatorLocal
{
// public String postSave()throws RemoteException,ITMException;
// public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
public String postSave() throws RemoteException,ITMException;
// public String postSaveRec(String xmlString1,String domId,String objContext,String editFlag, String xtraParams, String windowName, Connection conn)throws RemoteException,ITMException;
//public String postSave(String winName,String editFlag,String xmlString, String xtraParams,Connection conn) throws RemoteException,ITMException;
public String postSave( String domString, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
}
\ No newline at end of file
/********************************************************
Title : ConsumptionOdrIssuWizPos[D15BSUN017]
Date : 22/JUN/15
Developer: VALLABH KADAM.
********************************************************/
package ibase.webitm.ejb.mfg;
import java.rmi.RemoteException;
import java.sql.Connection;
//import javax.ejb.EJBObject;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.ValidatorRemote;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface ConsumptionOdrIssuWizPosRemote extends ValidatorRemote
{
// public String postSave()throws RemoteException,ITMException;
// public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
public String postSave() throws RemoteException,ITMException;
// public String postSaveRec(String xmlString1,String domId,String objContext,String editFlag, String xtraParams, String windowName, Connection conn)throws RemoteException,ITMException;
//public String postSave(String winName,String editFlag,String xmlString, String xtraParams,Connection conn) throws RemoteException,ITMException;
public String postSave( String domString,String editFlag, String xtraParams, Connection conn ) 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