Commit 6999502b authored by manohar's avatar manohar

New component for workorder release process


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93345 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fff59f84
This diff is collapsed.
package ibase.webitm.ejb.mfg;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local;
@Local
public interface WorkorderReleaseLocal extends ProcessLocal
{
public String process() 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 java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
@Remote
public interface WorkorderReleaseRemote extends ProcessRemote
{
public String process() 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