How to use processRequest method of org.cerberus.servlet.crud.transversaltables.UpdateLabel class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.transversaltables.UpdateLabel.processRequest

Source:UpdateLabel.java Github

copy

Full Screen

...61 * @param response servlet response62 * @throws ServletException if a servlet-specific error occurs63 * @throws IOException if an I/O error occurs64 */65 protected void processRequest(HttpServletRequest request, HttpServletResponse response)66 throws ServletException, IOException, CerberusException, JSONException {67 JSONObject jsonResponse = new JSONObject();68 Answer ans = new Answer();69 MessageEvent msg = new MessageEvent(MessageEventEnum.DATA_OPERATION_ERROR_UNEXPECTED);70 msg.setDescription(msg.getDescription().replace("%DESCRIPTION%", ""));71 ans.setResultMessage(msg);72 PolicyFactory policy = Sanitizers.FORMATTING.and(Sanitizers.LINKS);73 ApplicationContext appContext = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());74 String charset = request.getCharacterEncoding();75 ILabelService labelService = appContext.getBean(ILabelService.class);76 IFactoryLabel labelFactory = appContext.getBean(IFactoryLabel.class);77 response.setContentType("application/json");78 // Calling Servlet Transversal Util.79 ServletUtil.servletStart(request);80 /**81 * Parsing and securing all required parameters.82 */83 // Parameter that are already controled by GUI (no need to decode) --> We SECURE them84 String system = policy.sanitize(request.getParameter("system"));85 String type = policy.sanitize(request.getParameter("type"));86 Integer id = Integer.valueOf(policy.sanitize(request.getParameter("id")));87 String reqtype = ParameterParserUtil.parseStringParamAndDecodeAndSanitize(request.getParameter("reqtype"), "", charset);88 String reqstatus = ParameterParserUtil.parseStringParamAndDecodeAndSanitize(request.getParameter("reqstatus"), "", charset);89 String reqcriticity = ParameterParserUtil.parseStringParamAndDecodeAndSanitize(request.getParameter("reqcriticity"), "", charset);90 // Parameter that needs to be secured --> We SECURE+DECODE them91 String label = ParameterParserUtil.parseStringParamAndDecode(request.getParameter("label"), "", charset);92 String color = ParameterParserUtil.parseStringParamAndDecodeAndSanitize(request.getParameter("color"), "", charset);93 String parentLabel = ParameterParserUtil.parseStringParamAndDecodeAndSanitize(request.getParameter("parentLabel"), "", charset);94 String description = ParameterParserUtil.parseStringParamAndDecode(request.getParameter("description"), "", charset);95 String longDesc = ParameterParserUtil.parseStringParamAndDecode(request.getParameter("longdesc"), "", charset);96 String usr = request.getUserPrincipal().getName();97 /**98 * Checking all constrains before calling the services.99 */100 if (id == 0) {101 msg = new MessageEvent(MessageEventEnum.DATA_OPERATION_ERROR_EXPECTED);102 msg.setDescription(msg.getDescription().replace("%ITEM%", "Label")103 .replace("%OPERATION%", "Update")104 .replace("%REASON%", "Label ID is missing."));105 ans.setResultMessage(msg);106 } else {107 /**108 * All data seems cleans so we can call the services.109 */110 AnswerItem resp = labelService.readByKey(id);111 if (!(resp.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode()) && resp.getItem() != null)) {112 /**113 * Object could not be found. We stop here and report the error.114 */115 msg = new MessageEvent(MessageEventEnum.DATA_OPERATION_ERROR_EXPECTED);116 msg.setDescription(msg.getDescription().replace("%ITEM%", "Label")117 .replace("%OPERATION%", "Update")118 .replace("%REASON%", "Label does not exist."));119 ans.setResultMessage(msg);120 } else {121 /**122 * The service was able to perform the query and confirm the123 * object exist, then we can delete it.124 */125 Timestamp updateDate = new Timestamp(new Date().getTime());126 Label l = labelFactory.create(id, system, label, type, color, parentLabel, reqtype, reqstatus, reqcriticity, description, longDesc, null, null, usr, updateDate);127 ans = labelService.update(l);128 if (ans.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {129 /**130 * Delete was successful. Adding Log entry.131 */132 ILogEventService logEventService = appContext.getBean(LogEventService.class);133 logEventService.createForPrivateCalls("/UpdateLabel", "UPDATE", "Update Label : ['" + id + "']", request);134 }135 }136 }137 /**138 * Formating and returning the json result.139 */140 jsonResponse.put("messageType", ans.getResultMessage().getMessage().getCodeString());141 jsonResponse.put("message", ans.getResultMessage().getDescription());142 response.getWriter().print(jsonResponse);143 response.getWriter().flush();144 }145 // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">146 /**147 * Handles the HTTP <code>GET</code> method.148 *149 * @param request servlet request150 * @param response servlet response151 * @throws ServletException if a servlet-specific error occurs152 * @throws IOException if an I/O error occurs153 */154 @Override155 protected void doGet(HttpServletRequest request, HttpServletResponse response)156 throws ServletException, IOException {157 try {158 processRequest(request, response);159 } catch (CerberusException ex) {160 LOG.warn(ex);161 } catch (JSONException ex) {162 LOG.warn(ex);163 }164 }165 /**166 * Handles the HTTP <code>POST</code> method.167 *168 * @param request servlet request169 * @param response servlet response170 * @throws ServletException if a servlet-specific error occurs171 * @throws IOException if an I/O error occurs172 */173 @Override174 protected void doPost(HttpServletRequest request, HttpServletResponse response)175 throws ServletException, IOException {176 try {177 processRequest(request, response);178 } catch (CerberusException ex) {179 LOG.warn(ex);180 } catch (JSONException ex) {181 LOG.warn(ex);182 }183 }184 /**185 * Returns a short description of the servlet.186 *187 * @return a String containing servlet description188 */189 @Override190 public String getServletInfo() {191 return "Short description";...

Full Screen

Full Screen

processRequest

Using AI Code Generation

copy

Full Screen

1String charset = "UTF-8";2String param1 = "label";3String param2 = "labelDescription";4String param3 = "labelType";5String param4 = "labelValue";6String param5 = "labelColor";7String param6 = "labelSort";8String param7 = "labelParent";9String param8 = "labelID";10String query = String.format("label=%s&labelDescription=%s&labelType=%s&labelValue=%s&labelColor=%s&labelSort=%s&labelParent=%s&labelID=%s",11 URLEncoder.encode(param1, charset),12 URLEncoder.encode(param2, charset),13 URLEncoder.encode(param3, charset),14 URLEncoder.encode(param4, charset),15 URLEncoder.encode(param5, charset),16 URLEncoder.encode(param6, charset),17 URLEncoder.encode(param7, charset),18 URLEncoder.encode(param8, charset));19URLConnection connection = new URL(url + "?" + query).openConnection();20connection.setRequestProperty("Accept-Charset", charset);21InputStream response = connection.getInputStream();

Full Screen

Full Screen

processRequest

Using AI Code Generation

copy

Full Screen

1package org.cerberus.servlet.crud.transversaltables;2import java.io.IOException;3import java.util.ArrayList;4import java.util.logging.Level;5import java.util.logging.Logger;6import javax.servlet.ServletException;7import javax.servlet.http.HttpServlet;8import javax.servlet.http.HttpServletRequest;9import javax.servlet.http.HttpServletResponse;10import org.cerberus.crud.entity.MessageEvent;11import org.cerberus.crud.factory.IFactoryMessage;12import org.cerberus.crud.service.ILogEventService;13import org.cerberus.crud.service.IMessageService;14import org.cerberus.crud.service.impl.LogEventService;15import org.cerberus.crud.service.impl.MessageService;16import org.cerberus.engine.entity.MessageGeneral;17import org.cerberus.enums.MessageEventEnum;18import org.cerberus.exception.CerberusException;19import org.cerberus.factory.impl.FactoryMessage;20import org.cerberus.log.MyLogger;21import org.cerberus.util.answer.Answer;22import org.cerberus.util.answer.AnswerItem;23import org.springframework

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.

Most used method in UpdateLabel

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful