Commit 1cece7d8 authored by ssalve's avatar ssalve

Sarita : Added component on 09 JULY 2019

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@203166 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5742ab38
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.ITMException;
public class AdChangeIC extends ValidatorEJB implements AdChangeICLocal, AdChangeICRemote
{
E12GenericUtility genericUtility = new E12GenericUtility();
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException
{
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String errString = "";
try
{
if(xmlString != null && xmlString.trim().length() > 0)
{
dom = genericUtility.parseString(xmlString);
}
if(xmlString1 != null && xmlString1.trim().length() > 0)
{
dom1 = genericUtility.parseString(xmlString1);
}
if(xmlString2 != null && xmlString2.trim().length() > 0)
{
dom2 = genericUtility.parseString(xmlString2);
}
errString = wfValData(dom,dom1,dom2,objContext,editFlag,xtraParams);
System.out.println("ErrString :" + errString);
}
catch(Exception e)
{
System.out.println("Exception :AdChangeIC :wfValData(String xmlString):" + e.getMessage() + ":");
errString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
System.out.println("Returning from EmpITDeclarationIC wfValData");
return errString;
}
public String wfValData(Document dom, Document dom1, Document dom2,String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException
{
String userId = null;
String errString = "";
String empCode = "";
String sql = "";
Connection conn = null;
Statement stmt = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
NodeList parentList = null;
NodeList childList = null;
Node parentNode = null;
Node childNode = null;
String childNodeName = null;
int counterChild = 0;
int noOfChilds = 0;
int currentFormNo = 0;
int cnt = 0;
String adCode = "", erroCode = "",refNo = "",errorType = "",errCode = "";
String effDateStr = "",paySite = "",refType = "",expDateStr = "";
java.sql.Timestamp effDate = null , expDate = null;
ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>();
AdmCommon admCommon = new AdmCommon();
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
try
{
System.out.println("In case 1 ::::::::");
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
conn = getConnection();
if(objContext != null && objContext.trim().length()>0)
{
currentFormNo = Integer.parseInt(objContext);
System.out.println("currentFormNo:::"+currentFormNo);
switch(currentFormNo)
{
case 1:
{
parentList = dom.getElementsByTagName("Detail" + currentFormNo);
parentNode = parentList.item(0);
childList = parentNode.getChildNodes();
noOfChilds = childList.getLength();
System.out.println("noOfChilds == "+noOfChilds);
for(counterChild = 1; counterChild < noOfChilds; counterChild++)
{
childNode = childList.item(counterChild);
childNodeName = childNode.getNodeName();
if("emp_code".equalsIgnoreCase(childNodeName))
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
System.out.println("Employee Code is ::: ["+empCode+"] \t effDate ::: ["+effDate+"]");
sql = "select count(*) as cnt from employee where emp_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if(rs.next())
{
cnt = rs.getInt("cnt");
}
System.out.println("cnt is ::"+cnt);
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(cnt == 0)
{
errCode = "VMEMP1";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else
{
sql = "select pay_site from employee where emp_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if(rs.next())
{
paySite = rs.getString("pay_site");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
errCode = admCommon.gbfEmp(empCode, effDate, paySite, paySite, conn);
System.out.println("errCode is ::: ["+errCode+"]");
if(erroCode != null && erroCode.trim().length() > 0)
{
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}//End of Validation for Employee Code
if("eff_date".equalsIgnoreCase(childNodeName))
{
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
System.out.println("eff_date is :: ["+effDateStr+"]");
if(effDateStr == null || effDateStr.trim().length() == 0)
{
errCode = "VTDATE11";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}//End of Validation for eff_date
if("exp_date".equalsIgnoreCase(childNodeName))
{
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
expDateStr = checkNull(genericUtility.getColumnValue("exp_date", dom));
System.out.println("eff_date : ["+effDateStr+"] \t exp_date : ["+expDateStr+"]");
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
if(expDateStr != null && expDateStr.trim().length() > 0)
{
expDate = Timestamp.valueOf(genericUtility.getValidDateString(expDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
if(expDateStr == null || expDateStr.trim().length() == 0)
{
errCode = "VTDATE11";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else if(effDateStr == null || effDateStr.trim().length() == 0)
{
errCode = "VTDATE11";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
if((effDate != null && (expDate != null)) && effDate.after(expDate))
{
errCode = "VMEXPDATE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
adCode = checkNull(genericUtility.getColumnValue("ad_code", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
expDateStr = checkNull(genericUtility.getColumnValue("exp_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
if(expDateStr != null && expDateStr.trim().length() > 0)
{
expDate = Timestamp.valueOf(genericUtility.getValidDateString(expDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
System.out.println("emp_code is ::: ["+empCode+"] \t ad_code is ::: ["+adCode+"] \t eff_date is ::: ["+effDate+"] \t exp_date ::: ["+expDate+"]");
if("E".equalsIgnoreCase(editFlag))
{
erroCode = admCommon.gfValPayrollPrd("E", empCode, adCode, expDateStr, conn);
System.out.println("errCode is ::: ["+errCode+"]");
if(erroCode != null && erroCode.trim().length() > 0)
{
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else
{
cnt = 0;
sql = "select count(*) as count from employee_ad "
+ "where emp_code = ? "
+ "and ad_code = ? "
+ "and eff_date <= ? "
+ "and exp_date >= ? "
+ "and (eff_date <> ? or exp_date <> ?) ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
pstmt.setString(2, adCode);
pstmt.setTimestamp(3, effDate);
pstmt.setTimestamp(4, expDate);
pstmt.setTimestamp(5, effDate);
pstmt.setTimestamp(6, expDate);
rs = pstmt.executeQuery();
if(rs.next())
{
cnt = rs.getInt("count");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(cnt == 0)
{
errCode = "VTDATE15";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}
}
}//End of Validation for exp_date
if("ref_type".equalsIgnoreCase(childNodeName))
{
refType = checkNull(genericUtility.getColumnValue("ref_type", dom));
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
refNo = checkNull(genericUtility.getColumnValue("ref_no", dom));
System.out.println("ref_type is ::: ["+refType+"] \t emp_code is ::: ["+empCode+"]");
if(!"O".equalsIgnoreCase(refType) && !"L".equalsIgnoreCase(refType))
{
errCode = "VTDATE11";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
else if ("L".equalsIgnoreCase(refType))
{
cnt = 0;
sql = "select count(*) as count from loans where loan_no = ? and emp_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, refNo);
pstmt.setString(2, empCode);
rs = pstmt.executeQuery();
if(rs.next())
{
cnt = rs.getInt("count");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(cnt == 0)
{
errCode = "VTLOAN3";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
}//End of Validation for ref_type
}//end of case statement
}
break;
}
int errListSize = errList.size();
cnt = 0;
String errFldName = null;
if(errList != null && errListSize > 0)
{
for(cnt = 0; cnt < errListSize; cnt ++)
{
errCode = errList.get(cnt);
errFldName = errFields.get(cnt);
System.out.println("errCode .........." + errCode);
errString = getErrorString(errFldName, errCode, userId);
errorType = errorType(conn , errCode);
if(errString.length() > 0)
{
String bifurErrString = errString.substring(errString.indexOf("<Errors>") + 8, errString.indexOf("<trace>"));
bifurErrString = bifurErrString + errString.substring(errString.indexOf("</trace>") + 8, errString.indexOf("</Errors>"));
errStringXml.append(bifurErrString);
errString = "";
}
if(errorType.equalsIgnoreCase("E"))
{
break;
}
}
errList.clear();
errList = null;
errFields.clear();
errFields = null;
errStringXml.append("</Errors> </Root> \r\n");
}
else
{
errStringXml = new StringBuffer("");
}
}
}
catch(Exception e)
{
System.out.println("Exception :AdChangeIC :wfValData(Document dom):" + e.getMessage() + ":");
errString = genericUtility.createErrorString(e);
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if(rs != null)
{
rs.close();
rs = null;
}
if(stmt != null)
{
stmt.close();
stmt = null;
}
if(conn != null)
{
conn.close();
conn = null;
}
}
catch(Exception e)
{
System.out.println("Closing Connection...........");
e.printStackTrace();
throw new ITMException(e);
}
}
errString = errStringXml.toString();
System.out.println("testing : final errString : " + errString);
return errString;
}
public String itemChanged(String xmlString, String xmlStringHdr, String xmlStringAll, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException
{
Document dom = null, domHdr = null, domAll = null;
String valueXmlString = "";
try {
if (xmlString != null && xmlString.trim().length() > 0)
{
dom = genericUtility.parseString(xmlString);
}
if (xmlStringHdr != null && xmlStringHdr.trim().length() > 0)
{
domHdr = genericUtility.parseString(xmlStringHdr);
}
if (xmlStringAll != null && xmlStringAll.trim().length() > 0)
{
domAll = genericUtility.parseString(xmlStringAll);
}
valueXmlString = itemChanged(dom, domHdr, domAll, objContext, currentColumn, editFlag, xtraParams);
}
catch (Exception e)
{
System.out.println("Exception [" + this.getClass().getSimpleName() + "] : [itemChanged(S)] " + e.getMessage());
throw new ITMException(e);
}
return valueXmlString;
}
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException
{
String sql = "", empCode = "", adCode = "", empFname = "", empLname = "";
String effDateStr = "", expDateStr = "", propYn = "", refType = "", refNo = "",logInEmpCode = "";
int currentFormNo = 0;
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
StringBuffer valueXmlString = new StringBuffer();
Calendar cal = Calendar.getInstance();
java.sql.Timestamp joinDate = null , effDate1 = null;
String today = "";
AdmCommon admCommon = new AdmCommon();
String lsEmpadAprv = "";
try
{
conn = getConnection();
if (objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
}
logInEmpCode = getValueFromXTRA_PARAMS(xtraParams, "loginEmpCode");
System.out.println("[" + this.getClass().getSimpleName() + "] [itemChanged(D)]:currentFormNo:" + currentFormNo);
System.out.println("currentColumn:::::" + currentColumn);
valueXmlString = new StringBuffer("<?xml version=\"1.0\" encoding=''?>\r\n<Root>\r\n<header>\r\n<editFlag>");
valueXmlString.append(editFlag).append("</editFlag>\r\n</header>\r\n");
switch (currentFormNo)
{
case 1:
{
valueXmlString.append("<Detail1>\r\n");
if ("itm_default".equalsIgnoreCase(currentColumn))
{
System.out.println("--------Inside itm_default-------- \n xtraParams-------" + xtraParams);
adCode = checkNull(genericUtility.getValueFromXTRA_PARAMS(xtraParams, "ad_code"));
refType = checkNull(genericUtility.getColumnValue("ref_type", dom));
refNo = checkNull(genericUtility.getColumnValue("ref_no", dom));
SimpleDateFormat sdf1 = new SimpleDateFormat(genericUtility.getDispDateFormat());
today = sdf1.format(cal.getTime());
System.out.println("adCode ::["+adCode+"] \t refType ::["+refType+"]\t refNo ::["+refNo+"]\t today ::["+today+"]");
effDateStr = checkNull(admCommon.getEnv("999999", "AD_EFFDATE", conn));
expDateStr = checkNull(admCommon.getEnv("999999", "AD_EXPDATE", conn));
System.out.println("AD_EFFDATE : ["+effDateStr+"] \t AD_EXPDATE ["+expDateStr+"]");
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy");
Date effDate = sdf.parse(effDateStr);
Date expDate = sdf.parse(expDateStr);
sdf = new SimpleDateFormat("dd/MM/yy");
effDateStr = sdf.format(effDate);
expDateStr = sdf.format(expDate);
System.out.println(sdf.format(effDate));
System.out.println("AD_EFFDATE : ["+effDateStr+"] \t AD_EXPDATE ["+expDateStr+"]");
sql = "select prop_yn as ls_propyn from allwdedn where ad_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, adCode);
rs = pstmt.executeQuery();
if (rs.next())
{
propYn = checkNull(rs.getString("ls_propyn"));
}
System.out.println("prop_yn is == "+propYn);
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
lsEmpadAprv = checkNull(admCommon.getEnv("999999", "EMP_AD_APRV", conn));
System.out.println("EMP_AD_APRV :: " + lsEmpadAprv);
if("NULLFOUND".equalsIgnoreCase(lsEmpadAprv) || "N".equalsIgnoreCase(lsEmpadAprv))
{
valueXmlString.append("<confirmed>").append("<![CDATA[" + "Y" + "]]>").append("</confirmed>");
valueXmlString.append("<conf_date>").append("<![CDATA[" + today + "]]>").append("</conf_date>");
valueXmlString.append("<emp_code__aprv>").append("<![CDATA[" + logInEmpCode + "]]>").append("</emp_code__aprv>");
}
valueXmlString.append("<eff_date protect=\"0\"><![CDATA[" +effDateStr+ "]]></eff_date>\r\n");
valueXmlString.append("<exp_date protect=\"0\"><![CDATA[" +expDateStr+ "]]></exp_date>\r\n");
valueXmlString.append("<ad_code protect=\"0\"><![CDATA["+adCode+"]]></ad_code>\r\n");
valueXmlString.append("<ref_type protect=\"0\"><![CDATA["+refType+"]]></ref_type>\r\n");
valueXmlString.append("<ref_no protect=\"0\"><![CDATA["+refNo+"]]></ref_no>\r\n");
}
else if("itm_defaultedit".equalsIgnoreCase(currentColumn))
{
System.out.println("******Inside itm_defaultedit******");
SimpleDateFormat sdf1 = new SimpleDateFormat(genericUtility.getDispDateFormat());
today = sdf1.format(cal.getTime());
refType = checkNull(genericUtility.getColumnValue("ref_type", dom));
refNo = checkNull(genericUtility.getColumnValue("ref_no", dom));
System.out.println("currentDate ::["+today+"]\t refType ::["+refType+"]\t refNo ::["+refNo+"]");
if("O".equalsIgnoreCase(refType) || "L".equalsIgnoreCase(refType))
{
valueXmlString.append("<ref_type protect=\"0\"><![CDATA["+refType+"]]></ref_type>\r\n");
valueXmlString.append("<ref_no protect=\"0\"><![CDATA["+refNo+"]]></ref_no>\r\n");
}
else
{
valueXmlString.append("<ref_type protect=\"1\"><![CDATA["+refType+"]]></ref_type>\r\n");
valueXmlString.append("<ref_no protect=\"1\"><![CDATA["+refNo+"]]></ref_no>\r\n");
}
lsEmpadAprv = checkNull(admCommon.getEnv("999999", "EMP_AD_APRV", conn));
if("NULLFOUND".equalsIgnoreCase(lsEmpadAprv) || "N".equalsIgnoreCase(lsEmpadAprv))
{
valueXmlString.append("<confirmed>").append("<![CDATA[Y]]>").append("</confirmed>");
valueXmlString.append("<conf_date>").append("<![CDATA[" +today+ "]]>").append("</conf_date>");
valueXmlString.append("<emp_code__aprv>").append("<![CDATA["+ logInEmpCode +"]]>").append("</emp_code__aprv>");
}
else if("Y".equalsIgnoreCase(lsEmpadAprv))
{
valueXmlString.append("<confirmed>").append("<![CDATA[N]]>").append("</confirmed>");
valueXmlString.append("<conf_date>").append("<![CDATA[]]>").append("</conf_date>");
valueXmlString.append("<emp_code__aprv>").append("<![CDATA[]]>").append("</emp_code__aprv>");
}
}
else if("emp_code".equalsIgnoreCase(currentColumn))
{
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
effDateStr = checkNull(genericUtility.getColumnValue("eff_date", dom));
if(effDateStr != null && effDateStr.trim().length() > 0)
{
effDate1 = Timestamp.valueOf(genericUtility.getValidDateString(effDateStr, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
}
System.out.println("Employee Code Itemchange :: empCode["+empCode+"]\t effDateStr ["+effDateStr+"]");
sql = "Select date_join, emp_fname, emp_lname from employee where emp_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, empCode);
rs = pstmt.executeQuery();
if(rs.next())
{
joinDate = rs.getTimestamp("date_join");
empFname = checkNull(rs.getString("emp_fname"));
empLname = checkNull(rs.getString("emp_lname"));
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(joinDate.after(effDate1))
{
valueXmlString.append("<eff_date><![CDATA[").append(effDateStr).append("]]></eff_date>");
}
valueXmlString.append("<emp_fname><![CDATA[").append(empFname).append("]]></emp_fname>");
valueXmlString.append("<emp_lname><![CDATA[").append(empLname).append("]]></emp_lname>");
}
valueXmlString.append("</Detail1>\r\n");
}
break;
}
valueXmlString.append("</Root>\r\n");
} catch (Exception e) {
System.out.println("Exception in EJB["+this.getClass().getSimpleName()+"]:[" + e.getMessage()+"]");
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try {
if(conn != null)
{
conn.close();
conn = null;
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
System.out.println("Closed all Database Resource...!");
} catch (Exception e)
{
System.out.println("Exception in EJB["+this.getClass().getSimpleName()+"]::itemChanged::[" + e.getMessage()+"]");
throw new ITMException(e);
}
}
System.out.println("Itemchange ::==== ["+valueXmlString.toString()+"]");
return valueXmlString.toString();
}
private String errorType(Connection conn, String errorCode) throws ITMException
{
String msgType = "";
PreparedStatement pstmt = null;
ResultSet rs = null;
try
{
String sql = "SELECT MSG_TYPE FROM MESSAGES WHERE MSG_NO = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, errorCode);
rs = pstmt.executeQuery();
if (rs.next())
{
msgType = rs.getString("MSG_TYPE");
}
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch (Exception ex)
{
ex.printStackTrace();
throw new ITMException(ex);
}
finally
{
try
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
}
return msgType;
}
private String checkNull(String input)
{
return input == null ? "" : input.trim();
}
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
public interface AdChangeICLocal extends ValidatorLocal
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.adm;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
public interface AdChangeICRemote extends ValidatorRemote
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) 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