Commit 35c6ccae authored by sbade's avatar sbade

Added validation for edit case save action.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93110 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 90bf5f7d
......@@ -5,7 +5,6 @@ import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
......@@ -13,245 +12,263 @@ import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import javax.ejb.Stateless;
@Stateless
public class LoanPartyBank extends ValidatorEJB implements LoanPartyBankLocal, LoanPartyBankRemote {
public LoanPartyBank() {
System.out.println("inside loanparty");
}
public class LoanPartyBank extends ValidatorEJB implements LoanPartyBankLocal,
LoanPartyBankRemote {
public LoanPartyBank() {
System.out.println("inside loanparty");
}
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 = "";
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 = "";
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
String childNodeName = "";
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
String childNodeName = "";
try {
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0) {
dom2 = parseString("<Root>" + xmlString2 + "</Root>");
}
if (objContext != null && Integer.parseInt(objContext) == 1) {
parentNodeList = dom2.getElementsByTagName("Header0");
parentNode = parentNodeList.item(1);
childNodeList = parentNode.getChildNodes();
for (int x = 0; x < childNodeList.getLength(); x++) {
childNode = childNodeList.item(x);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("Detail1")) {
errString = wfValData(dom, dom1, dom2, "1", editFlag, xtraParams);
if (errString != null && errString.trim().length() > 0)
break;
} else if (childNodeName.equalsIgnoreCase("Detail2")) {
errString = wfValData(dom, dom1, dom2, "2", editFlag, xtraParams);
break;
}
}
}
try {
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0) {
dom2 = parseString("<Root>" + xmlString2 + "</Root>");
}
if (objContext != null && Integer.parseInt(objContext) == 1) {
parentNodeList = dom2.getElementsByTagName("Header0");
parentNode = parentNodeList.item(1);
childNodeList = parentNode.getChildNodes();
for (int x = 0; x < childNodeList.getLength(); x++) {
childNode = childNodeList.item(x);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("Detail1")) {
errString = wfValData(dom, dom1, dom2, "1", editFlag,
xtraParams);
if (errString != null && errString.trim().length() > 0)
break;
} else if (childNodeName.equalsIgnoreCase("Detail2")) {
errString = wfValData(dom, dom1, dom2, "2", editFlag,
xtraParams);
break;
}
}
}
else {
errString = wfValData(dom, dom1, dom2, objContext, editFlag, xtraParams);
}
} catch (Exception e) {
System.out.println("Exception : Inside wfValData Method ..> " + e.getMessage());
throw new ITMException(e);
else {
errString = wfValData(dom, dom1, dom2, objContext, editFlag,
xtraParams);
}
} catch (Exception e) {
System.out.println("Exception : Inside wfValData Method ..> "
+ e.getMessage());
throw new ITMException(e);
}
return (errString);
}
return (errString);
}
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException {
GenericUtility genericUtility;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
int ctr = 0, currentFormNo = 0, childNodeListLength = 0, cnt = 0;
String childNodeName = null;
String errString = "";
String errCode = "";
Connection conn = null;
PreparedStatement pStmt = null;
ResultSet rs = null;
String sql = "";
String userId = "";
String partyCode="";
//SimpleDateFormat simpleDateFormat;
public String wfValData(Document dom, Document dom1, Document dom2,
String objContext, String editFlag, String xtraParams)
throws RemoteException, ITMException {
GenericUtility genericUtility;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
int ctr = 0, currentFormNo = 0, childNodeListLength = 0, cnt = 0;
String childNodeName = null;
String errString = "";
String errCode = "";
Connection conn = null;
PreparedStatement pStmt = null;
ResultSet rs = null;
String sql = "";
String userId = "";
String partyCode = "";
try {
try {
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
connDriver = null;
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
genericUtility = GenericUtility.getInstance();
// simpleDateFormat = new
// SimpleDateFormat(genericUtility.getApplDateFormat());
if (objContext != null && objContext.trim().length() > 0) {
currentFormNo = Integer.parseInt(objContext);
}
switch (currentFormNo) {
case 1:
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
genericUtility = GenericUtility.getInstance();
//simpleDateFormat = new SimpleDateFormat(genericUtility.getApplDateFormat());
if (objContext != null && objContext.trim().length() > 0) {
currentFormNo = Integer.parseInt(objContext);
}
switch (currentFormNo) {
case 1:
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
for (ctr = 0; ctr < childNodeListLength; ctr++) {
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("party_code")) {
partyCode = genericUtility.getColumnValue("party_code",
dom);
partyCode = partyCode == null ? "" : partyCode.trim();
if (partyCode.length() == 0) {
errCode = "VTLPCDNL";
errString = getErrorString("party_code", errCode,
userId);
break;
} else {
sql = "select count(1) from loanparty where party_code = ?";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, partyCode);
rs = pStmt.executeQuery();
for (ctr = 0; ctr < childNodeListLength; ctr++) {
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("party_code")) {
partyCode = genericUtility.getColumnValue("party_code", dom);
partyCode = partyCode == null ? "" : partyCode.trim();
if (partyCode.length() == 0) {
errCode = "VTLPCDNL";
errString = getErrorString("party_code", errCode, userId);
break;
} else {
sql = "select count(1) from loanparty where party_code = ?";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, partyCode);
rs = pStmt.executeQuery();
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt == 0) {
errCode = "VTLPCDNF";
errString = getErrorString("party_code",
errCode, userId);
break;
}
}
} else if (childNodeName.equalsIgnoreCase("bank_code__ben")) {
String bankCodeBen = genericUtility.getColumnValue(
"bank_code__ben", dom);
partyCode = genericUtility.getColumnValue("party_code",
dom);
bankCodeBen = bankCodeBen == null ? "" : bankCodeBen
.trim();
System.out.println("EditFlag-->"+editFlag);
if (bankCodeBen.length() == 0) {
errCode = "VTBCBNNL";
errString = getErrorString("bank_code__ben",
errCode, userId);
break;
}
else if(!editFlag.trim().equalsIgnoreCase("E")) {
sql = "select count(1) from loanparty_bank where "
+" party_code = ? and bank_code__ben= ? ";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, partyCode);
pStmt.setString(2, bankCodeBen);
rs = pStmt.executeQuery();
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt == 0) {
errCode = "VTLPCDNF";
errString = getErrorString("party_code", errCode, userId);
break;
}
}
} else if (childNodeName.equalsIgnoreCase("bank_code__ben")) {
String bankCodeBen = genericUtility.getColumnValue("bank_code__ben", dom);
partyCode = genericUtility.getColumnValue("party_code", dom);
bankCodeBen = bankCodeBen == null ? "" : bankCodeBen.trim();
if (bankCodeBen.length() == 0)
{
errCode = "VTBCBNNL";
errString = getErrorString("bank_code__ben", errCode, userId);
break;
}
else
{
sql = "select count(1) from loanparty_bank where party_code = ? and bank_code__ben= ? ";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, partyCode);
pStmt.setString(2, bankCodeBen);
rs = pStmt.executeQuery();
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt > 0) {
errCode = "VMLPCABCE";
errString = getErrorString("party_code",
errCode, userId);
break;
}
}
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt > 0) {
errCode = "VMLPCABCE";
errString = getErrorString("party_code", errCode, userId);
break;
}
}
}else if (childNodeName.equalsIgnoreCase("bank_name__ben")) {
String bankNameBen = genericUtility.getColumnValue("bank_name__ben", dom);
bankNameBen = bankNameBen == null ? "" : bankNameBen.trim();
if (bankNameBen.length() == 0) {
errCode = "VTBNBNNL";
errString = getErrorString("bank_name__ben", errCode, userId);
break;
}
}else if (childNodeName.equalsIgnoreCase("bank_acct_no__ben")) {
String bankActNo = genericUtility.getColumnValue("bank_acct_no__ben", dom);
} else if (childNodeName.equalsIgnoreCase("bank_name__ben")) {
String bankNameBen = genericUtility.getColumnValue(
"bank_name__ben", dom);
bankNameBen = bankNameBen == null ? "" : bankNameBen
.trim();
if (bankNameBen.length() == 0) {
errCode = "VTBNBNNL";
errString = getErrorString("bank_name__ben",
errCode, userId);
break;
}
} else if (childNodeName
.equalsIgnoreCase("bank_acct_no__ben")) {
String bankActNo = genericUtility.getColumnValue(
"bank_acct_no__ben", dom);
bankActNo = bankActNo == null ? "" : bankActNo.trim();
if (bankActNo.length() == 0) {
errCode = "VTBANNL";
errString = getErrorString("bank_acct_no__ben", errCode, userId);
break;
}
}else if (childNodeName.equalsIgnoreCase("active_yn")) {
String active = genericUtility.getColumnValue("active_yn", dom);
active = active == null ? "" : active.trim();
if (active.length() == 0) {
errCode = "VTACTNL";
errString = getErrorString("active_yn", errCode, userId);
break;
}
}else if (childNodeName.equalsIgnoreCase("confirmed")) {
String confirmed = genericUtility.getColumnValue("confirmed", dom);
confirmed = confirmed == null ? "" : confirmed.trim();
if (confirmed.length() == 0) {
errCode = "VTCONNL";
errString = getErrorString("confirmed", errCode, userId);
break;
}
errCode = "VTBANNL";
errString = getErrorString("bank_acct_no__ben",
errCode, userId);
break;
}
} else if (childNodeName.equalsIgnoreCase("active_yn")) {
String active = genericUtility.getColumnValue(
"active_yn", dom);
active = active == null ? "" : active.trim();
if (active.length() == 0) {
errCode = "VTACTNL";
errString = getErrorString("active_yn", errCode,
userId);
break;
}
}
}// end of for
}// end of switch
} catch (Exception e) {
e.printStackTrace();
System.out.println("Exception ..> " + e.getMessage());
errString = e.getMessage();
throw new ITMException(e);
} finally {
try {
if (conn != null) {
conn.close();
}
}//end of for
}//end of switch
} catch (Exception e) {
e.printStackTrace();
errString = e.getMessage();
throw new ITMException(e);
} finally {
try {
if (conn != null) {
conn.close();
conn = null;
} catch (Exception d) {
d.printStackTrace();
System.out.println("Exception ..> " + d);
}
}
conn = null;
} catch (Exception d) {
d.printStackTrace();
}
return errString;
}
return errString;
}
///CHANGES FOR ITMCHANGE
public String itemChanged(String xmlString,String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException
{
System.out.println("------------------ itemChanged called------------------");
// /CHANGES FOR ITMCHANGE
public String itemChanged(String xmlString, String xmlString1,
String xmlString2, String objContext, String currentColumn,
String editFlag, String xtraParams) throws RemoteException,
ITMException {
System.out
.println("------------------ itemChanged called------------------");
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String valueXmlString = "";
try
{
try {
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
dom2 = parseString(xmlString2);
valueXmlString = itemChanged(dom,dom1,dom2,objContext,currentColumn,editFlag,xtraParams);
}
catch(Exception e)
{
System.out.println("Exception : [SiteLoanParty ][itemChanged(String,String)] :==>\n"+e.getMessage());
valueXmlString = itemChanged(dom, dom1, dom2, objContext,
currentColumn, editFlag, xtraParams);
} catch (Exception e) {
System.out .println("Exception : [LoanPartyBank ][itemChanged] :==>\n"
+ e.getMessage());
}
return valueXmlString;
}
public String itemChanged(Document dom, Document dom1,Document dom2, 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 {
System.out.println("@@@@@@@ itemChanged called");
StringBuffer valueXmlString = new StringBuffer();
......@@ -260,186 +277,129 @@ public class LoanPartyBank extends ValidatorEJB implements LoanPartyBankLocal, L
Node parentNode = null;
Node childNode = null;
Connection conn = null;
PreparedStatement pstmt = null,pstmt1 = null;
ResultSet rs = null,rs1 = null ;
PreparedStatement pstmt = null, pstmt1 = null;
ResultSet rs = null, rs1 = null;
String childNodeName = null;
GenericUtility genericUtility = GenericUtility.getInstance();
ConnDriver connDriver = new ConnDriver();
String sql="",sql1="";
int currentFormNo =0;
String columnValue="",siteCode="",salesPerson="",chgTerm="",chgUser="",siteCodePay="",firstname="",lastname="";
String banknameben="",add1="",add2="",add3="",city="",pin="",statecode="",acctcode="",swiftcode="",countcode="";
String banknameinter="",add1int="",add2int="",add3int="",cityint="",pinint="",statecodeint="",countcodeint="",swiftcodeint="";
String siteCodePayDescr="",salesPersonName="",PartyCode="",PartyName="",currcode="";
int ctr=0;
try
{
String sql = "", sql1 = "";
int currentFormNo = 0;
String columnValue = "", siteCode = "", salesPerson = "";
String chgTerm = "", chgUser = "", siteCodePay = "", firstname = "", lastname = "";
String banknameben = "", add1 = "", add2 = "", add3 = "", city = "", pin = "";
String statecode = "", acctcode = "", swiftcode = "", countcode = "";
String banknameinter = "", add1int = "", add2int = "", add3int = "";
String cityint = "", pinint = "", statecodeint = "", countcodeint = "";
String siteCodePayDescr = "", salesPersonName = "", PartyCode = "";
String PartyName = "", currcode = "", swiftcodeint = "";
int ctr = 0;
try {
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver=null;
if(objContext != null && objContext.trim().length()>0)
{
connDriver = null;
if (objContext != null && objContext.trim().length() > 0) {
currentFormNo = Integer.parseInt(objContext.trim());
}
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?><Root><header><editFlag>");
valueXmlString = new StringBuffer(
"<?xml version=\"1.0\"?><Root><header><editFlag>");
valueXmlString.append(editFlag).append("</editFlag></header>");
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "chg_term");
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "chg_user");
System.out.println("-------- currentFormNo : "+currentFormNo);
switch(currentFormNo)
{
case 1 :
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams,
"chg_term");
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams,
"chg_user");
System.out.println("-------- currentFormNo : " + currentFormNo);
switch (currentFormNo) {
case 1:
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
ctr = 0;
ctr = 0;
valueXmlString.append("<Detail1>");
int childNodeListLength = childNodeList.getLength();
do
{
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if(childNodeName.equals(currentColumn))
{
if (childNode.getFirstChild()!= null)
{
columnValue = childNode.getFirstChild().getNodeValue().trim();
}
}
ctr++;
}
while(ctr < childNodeListLength && !childNodeName.equals(currentColumn));
System.out.println("[" + currentColumn + "] ==> '" + columnValue + "'");
if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) )
{
System.out.println("------------@@@@@@@@in itm_default@@@@@@@@@---------");
if (currentColumn.trim().equalsIgnoreCase("itm_default")) {
System.out .println("------------@@@@@@@@in itm_default---");
Calendar currentDate = Calendar.getInstance();
SimpleDateFormat simpleDateFormatObj = new SimpleDateFormat(genericUtility.getApplDateFormat());
String systemDate = simpleDateFormatObj.format(currentDate.getTime());
SimpleDateFormat simpleDateFormatObj = new SimpleDateFormat(
genericUtility.getApplDateFormat());
String systemDate = simpleDateFormatObj.format(currentDate
.getTime());
System.out.println("Now the date is :=> " + systemDate);
valueXmlString.append("<site_code>").append("").append("</site_code>");
valueXmlString.append("<chg_date><![CDATA[").append(systemDate).append("]]></chg_date>\r\n");
valueXmlString.append("<chg_term><![CDATA[").append(chgTerm).append("]]></chg_term>");
valueXmlString.append("<chg_user><![CDATA[").append(chgUser).append("]]></chg_user>");
valueXmlString.append("<site_code>").append("")
.append("</site_code>");
valueXmlString.append("<chg_date><![CDATA[")
.append(systemDate).append("]]></chg_date>\r\n");
valueXmlString.append("<chg_term><![CDATA[")
.append(chgTerm).append("]]></chg_term>");
valueXmlString.append("<chg_user><![CDATA[")
.append(chgUser).append("]]></chg_user>");
}
if((currentColumn.trim().equalsIgnoreCase("party_code")))
{
String partyCode = genericUtility.getColumnValue("party_code",dom);
System.out.println("party_code ------>> "+partyCode);
if(partyCode != null && partyCode.trim().length()>0 )
{
sql = "SELECT PARTY_CODE,PARTY_NAME FROM loanparty WHERE party_code = ? ";
pstmt= conn.prepareStatement(sql);
pstmt.setString(1,partyCode);
if ((currentColumn.trim().equalsIgnoreCase("party_code"))) {
String partyCode = genericUtility.getColumnValue(
"party_code", dom);
System.out.println("party_code ------>> " + partyCode);
if (partyCode != null && partyCode.trim().length() > 0) {
sql = " SELECT PARTY_CODE,PARTY_NAME FROM loanparty WHERE "
+" party_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, partyCode);
rs = pstmt.executeQuery();
while(rs.next())
{
PartyName = rs.getString(1) == null ? "" : rs.getString(1);
PartyCode = rs.getString(2) == null ? "" : rs.getString(2);
while (rs.next()) {
PartyName = rs.getString(1) == null ? "" : rs
.getString(1);
PartyCode = rs.getString(2) == null ? "" : rs
.getString(2);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append("<party_name>").append("<![CDATA[" + PartyName +" "+ PartyCode + "]]>").append("</party_name>");
// valueXmlString.append("<last_name>").append("<![CDATA[" + lastname + "]]>").append("</last_name>");
}
else
{
valueXmlString.append("<party_name>").append("<![CDATA[]]>").append("</party_name>");
//valueXmlString.append("<last_name>").append("<![CDATA[]]>").append("</last_name>");
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString
.append("<party_name>")
.append("<![CDATA[" + PartyName + " "
+ PartyCode + "]]>")
.append("</party_name>");
} else {
valueXmlString.append("<party_name>")
.append("<![CDATA[]]>").append("</party_name>");
}
}
valueXmlString.append("</Detail1>");
}// end switch
}// end switch
valueXmlString.append("</Root>");
}
catch(Exception e)
{
} catch (Exception e) {
e.printStackTrace();
System.out.println("Exception ::"+e.getMessage());
System.out.println("Exception ::" + e.getMessage());
throw new ITMException(e);
}
finally
{
try
{
if(conn!=null)
{
if(rs != null)
{
} finally {
try {
if (conn != null) {
if (rs != null) {
rs.close();
rs = null;
}
if(pstmt != null)
{
if (pstmt != null) {
pstmt.close();
pstmt = null;
}
conn.close();
conn = null;
}
} catch (Exception d) {
d.printStackTrace();
System.out.println("Exception ..> " + d.getMessage());
}
catch(Exception d)
{
d.printStackTrace();
}
}
return valueXmlString.toString();
}
///CHANGES FOR ITMCHANGE
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 "";
}
}
\ 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