Commit 4d3b5951 authored by jshaikh's avatar jshaikh

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@197360 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 17c36e80
......@@ -981,4 +981,27 @@ public class SchemeApplIC extends ValidatorEJB implements SchemeApplICLocal, Sch
}
return input;
}
//Added by Jaffar S on 19-02-19 to get editflag which is not getting set
private String getAttributeValue(Node node) throws Exception
{
String attVal = null;
NodeList nodeList = null;
Node detaulNode = null;
Node detailNode = null;
nodeList = node.getChildNodes();
for(int ctr = 0; ctr < nodeList.getLength(); ctr++ )
{
detailNode = nodeList.item(ctr);
if(detailNode.getNodeName().equalsIgnoreCase("attribute") )
{
attVal = detailNode.getAttributes().getNamedItem("updateFlag").getNodeValue();
System.out.println("attVal["+attVal+"]");
}
}
return attVal;
}
}
\ 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