Commit a43eedcf authored by ssalve's avatar ssalve

Sarita : Done changes to add transDB in xtraparams for processRequest parameters on 26DEC2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177237 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 705a8627
......@@ -638,6 +638,8 @@ public class FrightUpdPrc extends ProcessEJB implements FrightUpdPrcLocal,Fright
String profileId = "";
String userType = "";
String chgTerm = "";
//Added by sarita on 26DEC2017
String transDB = "";
try
{
E12GenericUtility genericUtility = new E12GenericUtility();
......@@ -648,7 +650,8 @@ public class FrightUpdPrc extends ProcessEJB implements FrightUpdPrcLocal,Fright
profileId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"profileId");
userType = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"userType");
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"chgTerm");
//added by sarita on 26DEC2017 to insert transDB parameter
transDB = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"transDB");
System.out.println("xtraParams is @@@@@ " + xtraParams);
userInfoStr.append("<UserInfo>");
......@@ -659,6 +662,8 @@ public class FrightUpdPrc extends ProcessEJB implements FrightUpdPrcLocal,Fright
userInfoStr.append("<profileId>").append("<![CDATA["+profileId+"]]>").append("</profileId>\r\n");
userInfoStr.append("<userType>").append("<![CDATA["+userType+"]]>").append("</userType>\r\n");
userInfoStr.append("<remoteHost>").append("<![CDATA["+chgTerm+"]]>").append("</remoteHost>\r\n");
//added by sarita on 26DEC2017 to insert transDB parameter
userInfoStr.append("<transDB>").append("<![CDATA["+transDB+"]]>").append("</transDB>\r\n");
userInfoStr.append("</UserInfo>");
}
catch ( Exception e )
......
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