Commit fa3089dc authored by ssalve's avatar ssalve

Sarita: Committed Source code SRLContainerIC.java on 28FEB2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@181182 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6e45d15a
package ibase.webitm.ejb.dis;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import javax.ejb.Stateless;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* Session Bean implementation class EnterpriseIC
*/
@Stateless
public class SRLContainerIC extends ValidatorEJB implements SRLContainerICRemote, SRLContainerICLocal
{
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 retString = "";
try
{
System.out.println("Value of xmlStrings in Validation method ::: [xmlString ["+xmlString+"]] \n [xmlString1 ["+xmlString1+"]] \n [xmlString2 ["+xmlString2+"]]");
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);
}
retString = wfValData(dom,dom1,dom2,objContext,editFlag,xtraParams);
System.out.println("retString [wfValData]"+retString);
}
catch(Exception e)
{
System.out.println(":::" + getClass().getSimpleName() + "::"+ e.getMessage());
e.getMessage();
throw new ITMException(e);
}
return retString;
}//end of method wfValData
public String wfValData(Document dom, Document dom1, Document dom2,String objContext, String editFlag, String xtraParams)throws RemoteException, ITMException
{
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
ArrayList<String> errList = new ArrayList<String>();
ArrayList<String> errFields = new ArrayList<String>();
String errorType = "" , errCode = "" , sql = "" , errString = "" , userId = "" , childNodeName = "";
String itemCode = "" , inventoryType = "" , lotNo = "" , lotSl = "" , noArt = "", serialNoContent = "",inverntoryType = "";
NodeList parentNodeList = null;
Node parentNode = null;
NodeList childNodeList = null;
Node childNode = null;
int childNodeLength = 0;
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null ;
int currentFormNo = 0 , cnt = 0 , detlCnt = 0;
String updateFlag = "", detItemCode="", contentType = "", itemCodeDtl = "";
List<String> DetItemCodeList = new ArrayList<String>();
try
{
conn = getConnection();
if(objContext != null && objContext.trim().length() > 0)
{
currentFormNo = Integer.parseInt(objContext);
System.out.println("[CurrentFormNo [Validation]==========> ["+currentFormNo+"]]");
switch(currentFormNo)
{
case 1:
{
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeLength = childNodeList.getLength();
for(int ctr = 0; ctr < childNodeLength; ctr++)
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
System.out.println("[childNodeName[Validation][Detail1]===========> ]"+childNodeName);
if("no_art".equalsIgnoreCase(childNodeName))
{
noArt = checkNullAndTrim(genericUtility.getColumnValue("no_art",dom)).trim();
lotSl = checkNullAndTrim(genericUtility.getColumnValue("lot_sl",dom)).trim();
System.out.println("[No. of Articles ["+noArt+"]] \t [lotSl ["+lotSl+"]]");
if(noArt == null || noArt.length() == 0)
{
errCode = "VMNOARTNUL";
errList.add(errCode);
errFields.add("no_art");
}
else if(noArt != null && noArt.length() > 0)
{
int noArtValue = Integer.parseInt(noArt);
if(noArtValue == 0)
{
errCode = "VMNOART";
errList.add(errCode);
errFields.add("no_art");
}
}
}//End of Validation for no_art
else if("item_code".equalsIgnoreCase(childNodeName))
{
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code",dom)).trim();
inventoryType = checkNullAndTrim(genericUtility.getColumnValue("inventory_type",dom)).trim();
System.out.println("[ITEM CODE ["+itemCode+"]] \n [Inventory Type ["+inventoryType+"]] ");
if("0".equalsIgnoreCase(inventoryType))
{
if(itemCode == null || itemCode.length() == 0)
{
errCode = "VTITEMBLK";
errList.add(errCode);
errFields.add("item_code");
}
}
}//End of Validation for item_code
else if("lot_no".equalsIgnoreCase(childNodeName))
{
inventoryType = checkNullAndTrim(genericUtility.getColumnValue("inventory_type",dom)).trim();
lotNo = checkNullAndTrim(genericUtility.getColumnValue("lot_no",dom)).trim();
System.out.println("[Inventory Type ["+inventoryType+"]] \n [Lot Number ["+lotNo+"]]");
if("2".equalsIgnoreCase(inventoryType))
{
if(lotNo == null || lotNo.length() == 0)
{
errCode = "VMLOTNONUL";
errList.add(errCode);
errFields.add("lot_no");
}
}
}//end of validation for lot_no
else if("lot_sl".equalsIgnoreCase(childNodeName))
{
lotSl = checkNullAndTrim(genericUtility.getColumnValue("lot_sl",dom)).trim();
System.out.println("[Lot SL ["+lotSl+"]]");
if(lotSl == null || lotSl.trim().length() == 0)
{
errCode = "VTLTSLBLNK";
errList.add(errCode);
errFields.add("lot_sl");
}
else if(lotSl != null && lotSl.length() > 0)
{
sql = "select count(*) as cnt from Stock where lot_sl=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,lotSl);
rs = pstmt.executeQuery();
if(rs.next())
{
cnt = rs.getInt("cnt");
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
if(cnt == 0)
{
errCode = "STKVALLOSE";
errList.add(errCode);
errFields.add("lot_sl");
}
}
}//end of validation for lot_sl
}//-------------------- End of For Loop -----------------------------
}// ----------------------- End of Case1 --------------------------------
break;
case 2:
{
parentNodeList = dom.getElementsByTagName("Detail2");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeLength = childNodeList.getLength();
for(int ctr = 0; ctr < childNodeLength; ctr++)
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
System.out.println("[childNodeName[Validation][Detail2]===========> ]"+childNodeName);
if("serial_no__content".equalsIgnoreCase(childNodeName))
{
serialNoContent = checkNullAndTrim(genericUtility.getColumnValue("serial_no__content",dom)).trim();
System.out.println("[serial_no__content ["+serialNoContent+"]]");
if(serialNoContent == null || serialNoContent.length() == 0)
{
errCode = "VMSRNO";
errList.add(errCode);
errFields.add("serial_no__content");
}
}//end of validation for serial_no__content
else if("item_code".equalsIgnoreCase(childNodeName))
{
inverntoryType = checkNullAndTrim(genericUtility.getColumnValue("inventory_type", dom1));
contentType = checkNullAndTrim(genericUtility.getColumnValue("content_type", dom));
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom1));
itemCodeDtl = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom));
System.out.println("Inventory Type ====> ["+inverntoryType+"] \t Item Code Header=====> ["+itemCode+"]\t Content Type ======>["+contentType+"]\t Item Code Detail ["+itemCodeDtl+"] ");
if("0".equalsIgnoreCase(contentType) && "0".equalsIgnoreCase(contentType))
{
if(itemCodeDtl == null || itemCodeDtl.trim().length() == 0)
{
errCode = "VTITEMCD";
errList.add(errCode);
errFields.add("item_code");
}
}
else if("0".equalsIgnoreCase(inverntoryType))
{
int detlCnt1 = getNumOfNonDelDetail(dom2,2); System.out.println("Detal Count in Itemchange ::::["+detlCnt1+"]");
if(detlCnt1 >= 1)
{
NodeList detailNoteList = dom2.getElementsByTagName("Detail2");
for(int cntr = 0;cntr<detailNoteList.getLength();cntr++)
{
Node pNode=detailNoteList.item(cntr);
childNodeName = pNode.getNodeName();
updateFlag = getAttributeVal(pNode,"updateFlag");
detItemCode = checkNullAndTrim(genericUtility.getColumnValueFromNode("item_code", pNode));
if((detItemCode != null && detItemCode.length() > 0) && ("A".equalsIgnoreCase(updateFlag)))
{
DetItemCodeList.add(detItemCode);
}
}
if(!(DetItemCodeList.contains(itemCode)))
{
errCode = "VTITEMINVT";//"VTITEMINVT";
errList.add(errCode);
errFields.add("item_code");
}
}
}
}//end of validation for item_code
else if("lot_sl".equalsIgnoreCase(childNodeName))
{
lotSl = checkNullAndTrim(genericUtility.getColumnValue("lot_sl",dom)).trim();
System.out.println("[Lot SL ["+lotSl+"]]");
if(lotSl == null || lotSl.trim().length() == 0)
{
errCode = "VTLTSLBLNK";
errList.add(errCode);
errFields.add("lot_sl");
}
else if(lotSl != null && lotSl.length() > 0)
{
sql = "select count(*) as cnt from Stock where lot_sl=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,lotSl);
rs = pstmt.executeQuery();
if(rs.next())
{
cnt = rs.getInt("cnt");
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
if(cnt > 0)
{
errCode = "VTINVLOTSL";
errList.add(errCode);
errFields.add("lot_sl");
}
}
}//end of validation for lot_sl
}
}//----------------------- End of Case2 ---------------------------------
break;
}//------------------------End of switch satatement---------------------------
int errListSize = errList.size();
System.out.println("errListSize::::::::::"+errListSize);
int count = 0;
String errFldName = null;
if (errList != null && errListSize > 0)
{
for (count = 0; count < errListSize; count++)
{
errCode = errList.get(count);
errFldName = errFields.get(count);
System.out.println(" testing :errCode .:" + errCode);
errString = getErrorString(errFldName, errCode, userId);
System.out.println("errString>>>>>>>>>"+errString);
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;
}
}//end of for loop
errList.clear();
errList = null;
errFields.clear();
errFields = null;
errStringXml.append("</Errors> </Root> \r\n");
}
else
{
errStringXml = new StringBuffer("");
}
}
}//----------------------End of Try Block -------------------------------
catch(Exception e)
{
System.out.println("[Inside wfValdata [SRLContainerIC]]"+e);
e.printStackTrace();
throw new ITMException(e);
}//----------------------End of Catch Block ---------------------------
finally
{
try
{
if (conn != null)
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
conn.close();
}
conn = null;
}
catch (Exception d)
{
d.printStackTrace();
throw new ITMException(d);
}
}//----------------------End of Finally Block ---------------------------
return errStringXml.toString();
}// end of wfvalData method
private static String checkNullAndTrim(String input)
{
if (input==null)
{
input="";
}
return input.trim();
}//end of method checkNullAndTrim
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn,String editFlag, String xtraParams) throws RemoteException,ITMException
{
Document dom=null;
Document domhr=null;
Document domAll=null;
String retString="";
try
{
System.out.println("Value of xmlStrings in Itemchange method ::: [xmlString ["+xmlString+"]] \n [xmlString1 ["+xmlString1+"]] \n [xmlString2 ["+xmlString2+"]]");
if(xmlString != null && xmlString.trim().length()>0)
{
dom = genericUtility.parseString(xmlString);
}
if(xmlString1 != null && xmlString1.trim().length()>0)
{
domhr = genericUtility.parseString(xmlString1);
}
if(xmlString2 != null && xmlString2.trim().length()>0)
{
domAll = genericUtility.parseString(xmlString2);
}
retString = itemChanged(dom,domhr,domAll,objContext,currentColumn,editFlag,xtraParams);
System.out.println("retString [itemChanged]"+retString);
}
catch(Exception e)
{
System.out.println(":::" + getClass().getSimpleName() + "::"+ e.getMessage());
e.getMessage();
throw new ITMException(e);
}
return retString;
}
public String itemChanged(Document dom, Document dom1, Document dom2,String objContext, String currentColumn, String editFlag,String xtraParams) throws RemoteException, ITMException
{
StringBuffer valueXmlString = new StringBuffer();
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null ;
int currentFormNo=0,ctr = 0;
String loginSite = "" , childNodeName = "" , sql = "",item_descr="";
NodeList parentNodeList = null;
Node parentNode = null;
Node childNode = null;
NodeList childNodeList = null;
int childNodeListLength = 0 , cnt = 0;
String serialNo = "", serialDate = "", description = "", numOfArticle="", inverntoryType="", contentLevel="",itemCode="",lotNo="",lotSl="",createSource="",srlNoSource="";
try
{
conn = getConnection();
if(objContext != null && objContext.trim().length()>0)
{
currentFormNo = Integer.parseInt(objContext);
System.out.println("[CurrentFormNo [Itemchange]==========> ["+currentFormNo+"]]");
}
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?><Root><header><editFlag>");
valueXmlString.append(editFlag).append("</editFlag></header>");
switch(currentFormNo)
{
case 1:
{
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
System.out.println("childNodeList [Case1]====> ["+childNodeList+"]");
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
valueXmlString.append("<Detail1>\r\n");
childNodeListLength = childNodeList.getLength();
System.out.println("currentColumn-----for case1--->>[" + currentColumn + "]");
if("itm_defaultedit".equalsIgnoreCase(currentColumn.trim()))
{
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom));
sql = "select descr from item where item_code=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,itemCode);
rs = pstmt.executeQuery();
if(rs.next())
{
item_descr = rs.getString("descr");
System.out.println("Item Description is [Header]===========>"+item_descr);
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
valueXmlString.append("<item_descr><![CDATA[" ).append(item_descr).append( "]]></item_descr>\r\n" );
}
else if("item_code".equalsIgnoreCase(currentColumn.trim()))
{
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom));
System.out.println("Entered Item code is :::::::::::::"+itemCode);
sql = "select descr from item where item_code=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,itemCode);
rs = pstmt.executeQuery();
if(rs.next())
{
item_descr = rs.getString("descr");
System.out.println("Item Description is ===========>"+item_descr);
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
valueXmlString.append("<item_descr><![CDATA[" ).append(item_descr).append( "]]></item_descr>\r\n" );
}
}
valueXmlString.append("</Detail1>\r\n");
break;
case 2:
{
parentNodeList = dom.getElementsByTagName("Detail2");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
System.out.println("childNodeList [Case2]====> ["+childNodeList+"]");
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
valueXmlString.append("<Detail2>\r\n");
childNodeListLength = childNodeList.getLength();
System.out.println("currentColumn-----for case2--->>[" + currentColumn + "]");
if("itm_defaultedit".equalsIgnoreCase(currentColumn.trim()))
{
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom)); System.out.println("Item Code is Detail=== ["+itemCode+"]");
sql = "select descr from item where item_code=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,itemCode);
rs = pstmt.executeQuery();
if(rs.next())
{
item_descr = rs.getString("descr");
System.out.println("Item Description is [Detail]===========>"+item_descr);
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
valueXmlString.append("<item_descr><![CDATA[" ).append(item_descr).append( "]]></item_descr>\r\n" );
}
else if("item_code".equalsIgnoreCase(currentColumn.trim()))
{
itemCode = checkNullAndTrim(genericUtility.getColumnValue("item_code", dom));
System.out.println("Entered Item code is :::::::::::::"+itemCode);
sql = "select descr from item where item_code=?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,itemCode);
rs = pstmt.executeQuery();
if(rs.next())
{
item_descr = rs.getString("descr");
System.out.println("Item Description is ===========>"+item_descr);
}
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
valueXmlString.append("<item_descr><![CDATA[" ).append(item_descr).append( "]]></item_descr>\r\n" );
}
}
valueXmlString.append("</Detail2>\r\n");
}
valueXmlString.append("</Root>");
}
catch(Exception e)
{
System.out.println(":::" + getClass().getSimpleName() + "::"+ e.getMessage());
e.getMessage();
throw new ITMException(e);
}
finally
{
try
{
if (conn != null)
{
if (rs != null)
{
rs.close();
rs = null;
}
if (pstmt != null)
{
pstmt.close();
pstmt = null;
}
conn.close();
}
conn = null;
}
catch (Exception d)
{
d.printStackTrace();
throw new ITMException(d);
}
}
System.out.println("ValueXmlString ["+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(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
}
catch (Exception ex)
{
System.out.println("Exception inside errorType method"+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;
}//end of method errorType
public int getNumOfNonDelDetail(Document dom2,int detailNo) throws ITMException
{
Node childNode = null;
NodeList updateList;
String childNodeName = "";
String updateFlag="";
int cntr=0;
System.out.println("Inside getXmlDocument method!!!!!!!!!!!!!!");
try
{
System.out.println("detailString value is =="+genericUtility.serializeDom(dom2));
NodeList detailNoteList = dom2.getElementsByTagName("Detail"+detailNo);
for(int cnt = 0;cnt<detailNoteList.getLength();cnt++)
{
Node pNode=detailNoteList.item(cnt);
childNodeName = pNode.getNodeName();
updateFlag = getAttributeVal(pNode,"updateFlag");
System.out.println("Before updateFlag counter is ===["+cntr+"]"+"\t"+"updateFlag [" + updateFlag + "]");
if("A".equalsIgnoreCase(updateFlag))
{
cntr++;
}
System.out.println("After updateFlag counter is ===["+cntr+"]"+"\t"+"updateFlag [" + updateFlag + "]");
}
}
catch(Exception e)
{
System.out.println("Exception : : getNumOfNonDelDetail :"+e);
e.printStackTrace();
throw new ITMException(e);
}
return cntr;
}
public String getAttributeVal(Node dom, String attribName )throws ITMException
{
System.out.println("Inside getAttributeVal method is !!!!!!!!!!!!!!");
String AttribValue = null;
try
{
//NodeList detailList = dom2.getChildNodes();
NodeList detailList = dom.getChildNodes();
System.out.println("Details NodeList is ====["+detailList+"]" + "Length is ======"+detailList.getLength());
int detListLength = detailList.getLength();
for(int ctr = 0; ctr < detListLength; ctr++)
{
Node curDetail = detailList.item(ctr);
if(curDetail.getNodeName().equals("attribute"))
{
AttribValue = curDetail.getAttributes().getNamedItem(attribName).getNodeValue();
System.out.println("Attribute Value is =====["+AttribValue+"]");
break;
}
else
{
continue;
}
}
}
catch (Exception e)
{
System.out.println("Exception : : searchNode :"+e);
throw new ITMException(e);
}
return AttribValue;
}
}//end of class SRLContainerIC
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.util.HashMap;
import javax.ejb.Local;
import org.w3c.dom.Document;
@Local
public interface SRLContainerICLocal extends ValidatorLocal
{
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import java.util.HashMap;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
import org.w3c.dom.Document;
@Remote
public interface SRLContainerICRemote extends ValidatorLocal
{
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, 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