Commit 2340bb81 authored by snalawade's avatar snalawade

changes for execute gen validation only defined action and form_no specific validation.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@195104 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 38e0e2c2
...@@ -59,8 +59,9 @@ public class GenVal ...@@ -59,8 +59,9 @@ public class GenVal
//Done changes by sarita for rquest id A18ESUN010 => To Set loginCode,loginSiteCode,loginEmpCode & progileId to be used as sql input for generalized validation on 06 SEP 2018<= [END] //Done changes by sarita for rquest id A18ESUN010 => To Set loginCode,loginSiteCode,loginEmpCode & progileId to be used as sql input for generalized validation on 06 SEP 2018<= [END]
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public HashMap genVal(String modName ,String objContext,Document data ) //public HashMap genVal(String modName ,String objContext,Document data )
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data ) public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data,String action )
{ {
Connection conn = null; Connection conn = null;
boolean isGenValConn= false; boolean isGenValConn= false;
...@@ -76,8 +77,9 @@ public class GenVal ...@@ -76,8 +77,9 @@ public class GenVal
isGenValConn=true; isGenValConn=true;
} }
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errorMap = genVal(modName,objContext,data,conn); //errorMap = genVal(modName,objContext,data,conn);
errList = genVal(modName,objContext,data,conn); errList = genVal(modName,objContext,data,conn,action);
} catch (Exception e) } catch (Exception e)
{ {
// TODO Auto-generated catch block // TODO Auto-generated catch block
...@@ -105,8 +107,9 @@ public class GenVal ...@@ -105,8 +107,9 @@ public class GenVal
//public String genVal(String modName ,String objContext,Document data ) //comment added by sagar on 24/12/14 //public String genVal(String modName ,String objContext,Document data ) //comment added by sagar on 24/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public HashMap genVal(String modName ,String objContext,Document data, Connection conn ) //public HashMap genVal(String modName ,String objContext,Document data, Connection conn )
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, Connection conn ) public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, Connection conn, String action )
{ {
System.out.println("Generalized Validation Is In Process.************************************......."); System.out.println("Generalized Validation Is In Process.************************************.......");
Statement stmt = null; Statement stmt = null;
...@@ -126,15 +129,23 @@ public class GenVal ...@@ -126,15 +129,23 @@ public class GenVal
//Added by Santosh on 15/12/2016 to create error detail map //Added by Santosh on 15/12/2016 to create error detail map
HashMap<String,String> errorMap = null; HashMap<String,String> errorMap = null;
//added by priyanka on 31/12/14 //added by priyanka on 31/12/14
if( this.isFromButton)
//Changed by shrutika on 24-12-18 [Start] for execute gen validation only defined action and form_no specific validation.
/*if( this.isFromButton)
{ {
sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE,FORM_NO FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and trim(FORM_NO) is not null "; //sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE,FORM_NO FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and trim(FORM_NO) is not null ";
sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and ACTION = '"+action.toUpperCase()+"' and trim(FORM_NO) is not null ";
} }
else else
{ {
sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE,FORM_NO FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and trim(FORM_NO) is null "; //sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE,FORM_NO FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and trim(FORM_NO) is null ";
} sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and ACTION = '"+action.toUpperCase()+"' and trim(FORM_NO) is null ";
System.out.println("SQL :: "+sql); }*/
sql = " SELECT FLD_NAME,VAL_TYPE,FLD_MIN,SQL_INPUT,FLD_MAX,ERROR_CD,BLANK_OPT ,FLD_TYPE,FORM_NO FROM GENMST WHERE MOD_NAME= '"+modName.toUpperCase()+"' and upper(ACTION) = '"+action.toUpperCase()+"' and FORM_NO='"+objContext+"'";
//Changed by shrutika on 24-12-18 [End] for execute gen validation only defined action and form_no specific validation.
System.out.println("SQL :::::"+sql);
//ended by added by priyanka //ended by added by priyanka
try try
{ {
...@@ -540,7 +551,9 @@ public class GenVal ...@@ -540,7 +551,9 @@ public class GenVal
//***errMsg = genVal("X",objContext,data ,conn); //***errMsg = genVal("X",objContext,data ,conn);
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//errorMap = genVal("X",objContext,data,conn );//code added by sagar on 25/12/14 //errorMap = genVal("X",objContext,data,conn );//code added by sagar on 25/12/14
errList = genVal("X",objContext,data,conn );//code added by sagar on 25/12/14 //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errList = genVal("X",objContext,data,conn );//code added by sagar on 25/12/14
errList = genVal("X",objContext,data,conn,action );
System.out.println(">>>>>>>>>>>>>errList from Mod Name=X :"+errList); System.out.println(">>>>>>>>>>>>>errList from Mod Name=X :"+errList);
xFlag = true; xFlag = true;
} }
...@@ -601,7 +614,9 @@ public class GenVal ...@@ -601,7 +614,9 @@ public class GenVal
//added by priyanka 4 //added by priyanka 4
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//public HashMap genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton) //public HashMap genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton) //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, String action)
{ {
Connection conn = null; Connection conn = null;
boolean isGenValConn= false; boolean isGenValConn= false;
...@@ -617,8 +632,9 @@ public class GenVal ...@@ -617,8 +632,9 @@ public class GenVal
isGenValConn=true; isGenValConn=true;
} }
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
// errorMap = genVal( modName , objContext, data, focusedRow, isFromButton, conn) ; // errorMap = genVal( modName , objContext, data, focusedRow, isFromButton, conn) ;
errList = genVal( modName , objContext, data, focusedRow, isFromButton, conn) ; errList = genVal( modName , objContext, data, focusedRow, isFromButton, conn,action) ;
} catch (Exception e) } catch (Exception e)
{ {
// TODO Auto-generated catch block // TODO Auto-generated catch block
...@@ -645,11 +661,15 @@ public class GenVal ...@@ -645,11 +661,15 @@ public class GenVal
} }
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//public HashMap genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, Connection conn) //public HashMap genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, Connection conn)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, Connection conn) //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, Connection conn)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow,boolean isFromButton, Connection conn,String action)
{ {
System.out.println("focusedRow==========="+focusedRow); System.out.println("focusedRow==========="+focusedRow);
this.isFromButton=isFromButton; this.isFromButton=isFromButton;
return genVal(modName,objContext,data,focusedRow,conn); //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//return genVal(modName,objContext,data,focusedRow,conn);
return genVal(modName,objContext,data,focusedRow,conn,action);
} }
...@@ -657,7 +677,9 @@ public class GenVal ...@@ -657,7 +677,9 @@ public class GenVal
//public String genVal(String modName ,String objContext,Document data, String focusedRow)//comment added by sagar on 25/12/14 //public String genVal(String modName ,String objContext,Document data, String focusedRow)//comment added by sagar on 25/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//public HashMap genVal(String modName ,String objContext,Document data, String focusedRow, Connection conn) //public HashMap genVal(String modName ,String objContext,Document data, String focusedRow, Connection conn)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow, Connection conn) //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow, Connection conn)
public ArrayList<HashMap<String,String>> genVal(String modName ,String objContext,Document data, String focusedRow, Connection conn, String action)
{ {
String errMsg =" "; String errMsg =" ";
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
...@@ -688,7 +710,9 @@ public class GenVal ...@@ -688,7 +710,9 @@ public class GenVal
//errMsg = genVal( modName, objContext, data);//comment added by sagar on 25/12/14 //errMsg = genVal( modName, objContext, data);//comment added by sagar on 25/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//errorMsgMap = genVal( modName, objContext, data,conn);//code added by sagar on 25/12/14 //errorMsgMap = genVal( modName, objContext, data,conn);//code added by sagar on 25/12/14
errList = genVal( modName, objContext, data,conn); //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errList = genVal( modName, objContext, data,conn);
errList = genVal( modName, objContext, data,conn, action);
System.out.println(">>>>>>>>>>>Return errList in GenVal:"+errList); System.out.println(">>>>>>>>>>>Return errList in GenVal:"+errList);
//return errMsg;//comment added by sagar on 25/12/14 //return errMsg;//comment added by sagar on 25/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
......
...@@ -63,7 +63,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -63,7 +63,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
{ {
} }
//Start Added by chandrshekar 06-sep-2016 //Start Added by chandrshekar 06-sep-2016
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException
//public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException
{ {
String errString = ""; String errString = "";
...@@ -71,7 +73,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -71,7 +73,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
boolean isConn= false; boolean isConn= false;
try try
{ {
errString = this.wfValData(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn); //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errString = this.wfValData(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn);
errString = this.wfValData(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn,action);
System.out.println("errString:::::"+errString); System.out.println("errString:::::"+errString);
} }
catch(Exception e) catch(Exception e)
...@@ -89,7 +93,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -89,7 +93,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
return errString; return errString;
} }
//End Added by chandrshekar 06-sep-2016 //End Added by chandrshekar 06-sep-2016
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn, String action) throws RemoteException
{ {
String finalStr = ""; String finalStr = "";
String errFldName=""; String errFldName="";
...@@ -155,7 +161,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -155,7 +161,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
//errCode = genVal.genVal(winName,objContext,dom, focusedRow);//comment added by sagar on 25/12/14 //errCode = genVal.genVal(winName,objContext,dom, focusedRow);//comment added by sagar on 25/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//errorMap = genVal.genVal(winName,objContext,dom, focusedRow,conn);//code added by sagar on 25/12/14 //errorMap = genVal.genVal(winName,objContext,dom, focusedRow,conn);//code added by sagar on 25/12/14
errList = genVal.genVal(winName,objContext,dom, focusedRow,conn); //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errList = genVal.genVal(winName,objContext,dom, focusedRow,conn);
errList = genVal.genVal(winName,objContext,dom, focusedRow,conn,action);
genVal = null; genVal = null;
//changed by msalam on 27/09/07 end //changed by msalam on 27/09/07 end
/*if (errCode != null && errCode.trim().length() > 0) /*if (errCode != null && errCode.trim().length() > 0)
...@@ -284,7 +292,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -284,7 +292,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
return errString; return errString;
} }
//Start Added by chandrshekar 06-sep-2016 //Start Added by chandrshekar 06-sep-2016
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException
{ {
String errString = ""; String errString = "";
...@@ -292,7 +302,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -292,7 +302,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
boolean isConn= false; boolean isConn= false;
try try
{ {
errString = wfValData1(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn); //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errString = wfValData1(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn);
errString = wfValData1(xmlString,xmlString1,xmlString2,objContext,winName, xtraParams, conn, action);
System.out.println("errString:::::"+errString); System.out.println("errString:::::"+errString);
} }
catch(Exception e) catch(Exception e)
...@@ -311,7 +323,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -311,7 +323,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
} }
//End Added by chandrshekar 06-sep-2016 //End Added by chandrshekar 06-sep-2016
//added by priyanka on 31/12/14 to execute genValidation based o form no on accept button //added by priyanka on 31/12/14 to execute genValidation based o form no on accept button
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException //Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn, String action) throws RemoteException
{ {
String finalStr = ""; String finalStr = "";
String errFldName=""; String errFldName="";
...@@ -374,8 +388,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen ...@@ -374,8 +388,9 @@ public class GenValidate extends ValidatorEJB implements GenValidateLocal , Gen
//Done changes by sarita for rquest id A18ESUN010 => To Set loginCode,loginSiteCode,loginEmpCode & progileId to be used as sql input for generalized validation on 06 SEP 2018<= [END] //Done changes by sarita for rquest id A18ESUN010 => To Set loginCode,loginSiteCode,loginEmpCode & progileId to be used as sql input for generalized validation on 06 SEP 2018<= [END]
//errCode = genVal.genVal(winName,objContext,dom, focusedRow);//comment added by sagar on 25/12/14 //errCode = genVal.genVal(winName,objContext,dom, focusedRow);//comment added by sagar on 25/12/14
//Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap //Changed by Santosh on 15/12/2016 to return list of error codes instead of HashMap
//Changed by shrutika on 24-12-18 for execute gen validation only defined action and form_no specific validation.
//errorMap = genVal.genVal(winName,objContext,dom, focusedRow,true,conn); //errorMap = genVal.genVal(winName,objContext,dom, focusedRow,true,conn);
errList = genVal.genVal(winName,objContext,dom, focusedRow,true,conn); errList = genVal.genVal(winName,objContext,dom, focusedRow,true,conn, action);
genVal = null; genVal = null;
//changed by msalam on 27/09/07 end //changed by msalam on 27/09/07 end
/*if (errCode != null && errCode.trim().length() > 0) /*if (errCode != null && errCode.trim().length() > 0)
......
...@@ -24,10 +24,15 @@ import javax.ejb.Local; // added for ejb3 ...@@ -24,10 +24,15 @@ import javax.ejb.Local; // added for ejb3
@Local // added for ejb3 @Local // added for ejb3
public interface GenValidateLocal extends ValidatorLocal //extends EJBObject public interface GenValidateLocal extends ValidatorLocal //extends EJBObject
{ {
//Changed by shrutika on 24-12-18 [Start] for execute gen validation only defined action and form_no specific validation.
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException; //public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException; //public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException; //public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException; //public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn) throws RemoteException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn, String action) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn, String action) throws RemoteException;
//Changed by shrutika on 24-12-18 [End] for execute gen validation only defined action and form_no specific validation.
} }
...@@ -26,8 +26,14 @@ import javax.ejb.Remote; // added for ejb3 ...@@ -26,8 +26,14 @@ import javax.ejb.Remote; // added for ejb3
public interface GenValidateRemote extends ValidatorRemote //extends EJBObject { public interface GenValidateRemote extends ValidatorRemote //extends EJBObject {
{ {
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException; //Changed by shrutika on 24-12-18 [Start]for execute gen validation only defined action and form_no specific validation.
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams,Connection conn) throws RemoteException; //public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException; //public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams,Connection conn) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams,Connection conn) throws RemoteException; //public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams) throws RemoteException;
//public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams,Connection conn) throws RemoteException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, Connection conn, String action) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams, String action) throws RemoteException;
public String wfValData1(String xmlString, String xmlString1, String xmlString2, String objContext, String winName, String xtraParams,Connection conn, String action) throws RemoteException;
//Changed by shrutika on 24-12-18 [End] for execute gen validation only defined action and form_no specific validation.
} }
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