Commit 12ee216e authored by mjadhav's avatar mjadhav

process window for wo_track_staus


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96767 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d94e00c4
This diff is collapsed.
/********************************************************
Title : GenWOTrackStatusPrcLocal(M14GSUN005)
Date : 22-09-2014
Developer : mahendra Jadhav
Purpose : Create process window for work order track status to retrive data from work order and activity
master.
********************************************************/
package ibase.webitm.ejb.sys;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Local;
import org.w3c.dom.Document;
@Local
public interface GenWOTrackStatusPrcLocal 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;
// public String confirm(String arg0, String arg1, String arg2);
}
/********************************************************
Title : GenWOTrackStatusPrcRemote(M14GSUN005)
Date : 22-09-2014
Developer : mahendra Jadhav
Purpose : Create process window for work order track status to retrive data from work order and activity
master.
********************************************************/
package ibase.webitm.ejb.sys;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Remote;
import org.w3c.dom.Document;
@Remote
public interface GenWOTrackStatusPrcRemote 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;
}
This diff is collapsed.
/********************************************************
Title : WOTrackStatusICLocal(M14GSUN005)
Date : 06-10-2014
Developer : mahendra Jadhav
********************************************************/
package ibase.webitm.ejb.sys;
import java.rmi.RemoteException;
import org.w3c.dom.*;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
@javax.ejb.Local
public interface WOTrackStatusICLocal extends ValidatorLocal
{
public String wfValData(String xmlString, String xmlString1, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
//public String itemChanged(String xmlString, String xmlString1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
//public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
\ No newline at end of file
/********************************************************
Title : WOTrackStatusICRemote(M14GSUN005)
Date : 06-10-2014
Developer : mahendra Jadhav
********************************************************/
package ibase.webitm.ejb.sys;
import java.rmi.RemoteException;
import org.w3c.dom.*;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
@javax.ejb.Remote
public interface WOTrackStatusICRemote extends ValidatorRemote
{
public String wfValData(String xmlString, String xmlString1, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
//public String itemChanged(String xmlString, String xmlString1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
//public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, 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