Commit 49f0277b authored by ajadhav's avatar ajadhav

change in method signature for processRequest and remove other wherever it is called.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177272 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 69f584c4
......@@ -22,13 +22,6 @@ public class CustomerMasterWfEJB extends ValidatorEJB implements CustomerMasterW
public String insertCustomerMaster(String objName,String tranId,String transInfoXml,String docId,String xtraParams,String entityCode) throws RemoteException, ITMException {
Connection conn = null;
String retString = "";
String userId = "";//Added By Pavan R 27/DEC/17
//added by Pavan R on 27/DEC/17 userId passwed to savData() and processRequest()
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
System.out.println("userId::["+userId+"]");
String [] authencate = new String[2];
authencate[0] = userId;
authencate[1] = "";
String siteCode = "";
E12GenericUtility genericUtility = null;
Document xmlDataAll = null;
......@@ -42,6 +35,13 @@ public class CustomerMasterWfEJB extends ValidatorEJB implements CustomerMasterW
Properties p = appConnect.getProperty();
InitialContext ctx = new InitialContext(p);
genericUtility = new E12GenericUtility();
String userId = "";//Added By Pavan R 27/DEC/17
//added by Pavan R on 27/DEC/17 userId passwed to savData() and processRequest()
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
System.out.println("userId::["+userId+"]");
String [] authencate = new String[2];
authencate[0] = userId;
authencate[1] = "";
SimpleDateFormat dt = new SimpleDateFormat(genericUtility.getApplDateFormat());
if (transInfoXml != null && transInfoXml.trim().length() != 0) {
xmlDataAll = genericUtility.parseString(transInfoXml);
......
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