Commit 773cda69 authored by steurwadkar's avatar steurwadkar

Local Remote interface change


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@102523 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5689f727
...@@ -460,45 +460,4 @@ public class ItemSerCrPolicy extends ValidatorEJB implements ItemSerCrPolicyLoca ...@@ -460,45 +460,4 @@ public class ItemSerCrPolicy extends ValidatorEJB implements ItemSerCrPolicyLoca
} }
return valueXmlString.toString(); return valueXmlString.toString();
} }
public String wfValData() throws RemoteException, ITMException {
return "";
}
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException {
return "";
}
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag) throws RemoteException, ITMException {
return "";
}
public String itemChanged() throws RemoteException, ITMException {
return "";
}
public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException {
return "";
}
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag) throws RemoteException, ITMException {
return "";
}
@Override
public String process(String xmlString, String xmlString2,
String windowName, String xtraParams) throws RemoteException,
ITMException {
// TODO Auto-generated method stub
return null;
}
@Override
public String process(Document dom, Document dom2, String windowName,
String xtraParams) throws RemoteException, ITMException {
// TODO Auto-generated method stub
return null;
}
} }
\ No newline at end of file
...@@ -8,8 +8,17 @@ import ibase.webitm.ejb.ProcessLocal; ...@@ -8,8 +8,17 @@ import ibase.webitm.ejb.ProcessLocal;
import javax.ejb.Local; import javax.ejb.Local;
@Local @Local
//Changed by Santosh on 18-07-16
//public interface ItemSerCrPolicyLocal {
public interface ItemSerCrPolicyLocal { public interface ItemSerCrPolicyLocal {
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException, ITMException; /*public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException, ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException, ITMException; public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException, ITMException;*/
public String wfValData() throws RemoteException, ITMException ;
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException ;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag) throws RemoteException, ITMException ;
public String itemChanged() throws RemoteException, ITMException ;
public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag) throws RemoteException, ITMException ;
} }
\ No newline at end of file
...@@ -7,8 +7,17 @@ import javax.ejb.Remote; ...@@ -7,8 +7,17 @@ import javax.ejb.Remote;
import ibase.webitm.ejb.ProcessRemote; import ibase.webitm.ejb.ProcessRemote;
@Remote @Remote
//Changed by Santosh on 18-07-16
//public interface ItemSerCrPolicyRemote {
public interface ItemSerCrPolicyRemote { public interface ItemSerCrPolicyRemote {
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException, ITMException; /*public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException, ITMException;
public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException, ITMException; public String process(Document dom, Document dom2, String windowName, String xtraParams) throws RemoteException, ITMException;*/
public String wfValData() throws RemoteException, ITMException ;
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException ;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag) throws RemoteException, ITMException ;
public String itemChanged() throws RemoteException, ITMException ;
public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag) 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