Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. HashMap<String, String> pathXml = new HashMap<>();
  2. pathXml.put("offers-request-cancellation", "offers-request_cancel_xml");
  3. pathXml.put("open-competition-cancellation", "offers-open_competition_cancel_xml");
  4. pathXml.put("open-competition-lp-cancellation", "open_competition_lp_cancel_xml");
  5. pathXml.put("two-stage-competition-cancellation", "two_stage_competition_cancel_xml");
  6. pathXml.put("call-for-quotes-cancellation", "call_for_quotes_cancel_xml");
  7. pathXml.put("auction-cancellation-1", "local_xml_for_cancellation_path");
  8. pathXml.put("auction-cancellation-2", "local_xml_for_cancellation_path");
  9. pathXml.put("auction-cancellation-3", "local_xml_for_cancellation_path");
  10. pathXml.put("call-for-quotes-p-e", "modification_CfQ_xml");
  11. pathXml.put("open-competition-p-e", "modification_OK_xml");
  12. pathXml.put("offers-request-p-e", "modification_OffersRequest_xml");
  13. pathXml.put("cpContractProject_customer8_participant2", "cpContractProject_customer8_participant2_xml");
  14. pathXml.put("cpContractProjectForTwoStageCompetition", "cpContractProjectTwoStageCompetition_xml");
  15. pathXml.put("cpContractSign_customer8_participant1", "cpContractSign_customer8_participant1_xml");
  16. pathXml.put("cpContractProjectChange", "cpContractProjectChange_xml");
  17. pathXml.put("cpContractSignAfterChangeContract", "cpContractSignAfterChangeContract_xml");
  18. pathXml.put("protocolDeviation", "protocolDeviation_xml");
  19. pathXml.put("cpContractProjectAfterDeviationSupplier", "cpContractProjectAfterDeviationSupplier_xml");
  20. pathXml.put("fcsProtocolEvasion", "protocolEvasion_xml");
  21. pathXml.put("contractProject_customer7_participant2", "contractProject_customer7_participant2_xml");
  22. pathXml.put("contractProject_customer1_participant2", "contractProject_customer1_participant2_xml");
  23. pathXml.put("contractProject_customer8_participant2", "contractProject_customer8_participant2_xml");
  24. pathXml.put("contractSign_customer7_participant2", "contractSign_customer7_participant2_xml");
  25. pathXml.put("contractSign_customer8_participant3", "contractSign_customer8_participant3_xml");
  26. pathXml.put("protocolEvasion_customer8", "protocolEvasion_customer8_xml");
  27. pathXml.put("contractProject_customer8_participant3", "contractProject_customer8_participant3_xml");
  28. pathXml.put("protocolDeviation_customer1", "protocolDeviation_customer1_xml");
  29. pathXml.put("contractProject_customer1_participant3", "contractProject_customer1_participant3_xml");
  30. pathXml.put("contractSign_customer8_participant2", "contractSign_customer8_participant2_xml");
  31. pathXml.put("contractProject_customer7_participant3", "contractProject_customer7_participant3_xml");
  32. pathXml.put("contractSign_customer7_participant3", "contractSign_customer7_participant3_xml");
  33. if(config.getParameter("param_GO_size").contains("0,01")){
  34. pathXml.put("enforceability-deadline-extensions", "local_xml_path_with_GO");
  35. pathXml.put("enforceability-deadline-extensions-2", "local_xml_path_with_GO");
  36. pathXml.put("enforceability-deadline-extensions-3", "local_xml_path_with_GO");
  37. pathXml.put("enforceability-deadline-extensions-4", "local_xml_path_with_GO");
  38. } else {
  39. pathXml.put("enforceability-deadline-extensions", "local_xml_path");
  40. pathXml.put("enforceability-deadline-extensions-2", "local_xml_path");
  41. pathXml.put("enforceability-deadline-extensions-3", "local_xml_path");
  42. pathXml.put("enforceability-deadline-extensions-4", "local_xml_path");
  43. }
  44.  
  45. String path = configContainer.getConfigParameter(pathXml.get(config.getParameter("param_test_type")));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement