Commit 5f138d26 authored by msingh's avatar msingh

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100164 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1c7038b0
......@@ -6,12 +6,13 @@ Author: Kunal Mandhre
package ibase.webitm.ejb.wms;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Local
public interface CheckSheetPosLocal
public interface CheckSheetPosLocal extends ValidatorLocal
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -6,13 +6,14 @@ Author: Kunal Mandhre
*/
package ibase.webitm.ejb.wms;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
@javax.ejb.Remote
public interface CheckSheetPosRemote
public interface CheckSheetPosRemote extends ValidatorRemote
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -15,7 +15,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Local
public interface DockTranPosLocal
public interface DockTranPosLocal extends ValidatorLocal
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -15,7 +15,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Remote
public interface DockTranPosRemote
public interface DockTranPosRemote extends ValidatorRemote
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -15,7 +15,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Local
public interface PickIssPosLocal
public interface PickIssPosLocal extends ValidatorLocal
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -15,7 +15,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Remote
public interface PickIssPosRemote
public interface PickIssPosRemote extends ValidatorRemote
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -14,7 +14,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Local
public interface PoRcpPosLocal
public interface PoRcpPosLocal extends ValidatorLocal
{
//public String postSave()throws RemoteException,ITMException;
//public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -15,7 +15,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Remote
public interface PoRcpPosRemote
public interface PoRcpPosRemote extends ValidatorRemote
{
//public String postSave()throws RemoteException,ITMException;
//public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -10,7 +10,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Local
public interface ShipmentPosLocal
public interface ShipmentPosLocal extends ValidatorLocal
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
......@@ -10,7 +10,7 @@ import java.sql.Connection;
import org.w3c.dom.*;
@javax.ejb.Remote
public interface ShipmentPosRemote
public interface ShipmentPosRemote extends ValidatorRemote
{
public String postSave()throws RemoteException,ITMException;
public String postSave( String domString,String tranId, String editFlag, String xtraParams, Connection conn ) throws RemoteException,ITMException;
......
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