How to use create method of org.cerberus.crud.service.impl.CampaignParameterService class

Best Cerberus-source code snippet using org.cerberus.crud.service.impl.CampaignParameterService.create

Source:CreateCampaign.java Github

copy

Full Screen

...94 finalAnswer.setResultMessage(msg);95 } else {96 ICampaignService campaignService = appContext.getBean(ICampaignService.class);97 IFactoryCampaign factoryCampaign = appContext.getBean(IFactoryCampaign.class);98 Campaign camp = factoryCampaign.create(0, name, distribList, notifyStart, notifyEnd, desc);99 finalAnswer = campaignService.create(camp);100 if (finalAnswer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {101 /**102 * Adding Log entry.103 */104 ILogEventService logEventService = appContext.getBean(LogEventService.class);105 logEventService.createForPrivateCalls("/CreateCampaign", "CREATE", "Create Campaign : " + camp.getCampaign(), request);106 if (parameter != null) {107 JSONArray parameters = new JSONArray(parameter);108 ICampaignParameterService campaignParameterService = appContext.getBean(ICampaignParameterService.class);109 IFactoryCampaignParameter factoryCampaignParameter = appContext.getBean(IFactoryCampaignParameter.class);110 ans = campaignParameterService.deleteByCampaign(name);111 int i = 0;112 while (i < parameters.length() && ans.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {113 JSONArray bat = parameters.getJSONArray(i);114 CampaignParameter co = factoryCampaignParameter.create(0, bat.getString(0), bat.getString(2), bat.getString(3));115 ans = campaignParameterService.create(co);116 i++;117 if (ans.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {118 /**119 * Adding Log entry.120 */121 logEventService.createForPrivateCalls("/CreateCampaign", "CREATE", "Update Campaign Parameter : " + co.getCampaign() + ", " + co.getValue(), request);122 }123 }124 }125 if (label != null) {126 JSONArray labels = new JSONArray(label);127 ICampaignLabelService campaignLabelService = appContext.getBean(ICampaignLabelService.class);128 IFactoryCampaignLabel factoryCampaignLabel = appContext.getBean(IFactoryCampaignLabel.class);129 ArrayList<CampaignLabel> arr = new ArrayList<>();130 for (int i = 0; i < labels.length(); i++) {131 JSONArray bat = labels.getJSONArray(i);132 CampaignLabel co = factoryCampaignLabel.create(0, bat.getString(0), Integer.valueOf(bat.getString(2)), request.getRemoteUser(), null, request.getRemoteUser(), null);133 arr.add(co);134 }135 finalAnswer = campaignLabelService.compareListAndUpdateInsertDeleteElements(name, arr);136 if (finalAnswer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {137 /**138 * Adding Log entry.139 */140 logEventService.createForPrivateCalls("/CreateCampaign", "CREATE", "Create Campaign Label : " + camp.getCampaign(), request);141 }142 }143 if (ans != null && !ans.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {144 finalAnswer = ans;145 }146 }147 }148 /**149 * Formating and returning the json result.150 */151 jsonResponse.put("messageType", finalAnswer.getResultMessage().getMessage().getCodeString());152 jsonResponse.put("message", finalAnswer.getResultMessage().getDescription());153 response.getWriter().print(jsonResponse);154 response.getWriter().flush();...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful