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

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

Source:UpdateLabel.java Github

copy

Full Screen

...49/**50 *51 * @author bcivel52 */53@WebServlet(name = "UpdateLabel", urlPatterns = {"/UpdateLabel"})54public class UpdateLabel extends HttpServlet {55 private static final Logger LOG = LogManager.getLogger(UpdateLabel.class);56 /**57 * Processes requests for both HTTP <code>GET</code> and <code>POST</code>58 * methods.59 *60 * @param request servlet request61 * @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....

Full Screen

Full Screen

UpdateLabel

Using AI Code Generation

copy

Full Screen

1{2}3Content-Type: application/json;charset=UTF-84{5}6package org.cerberus.servlet.crud.transversaltables;7import java.io.IOException;8import java.io.PrintWriter;9import java.util.logging.Level;10import java.util.logging.Logger;11import javax.servlet.ServletException;12import javax.servlet.http.HttpServlet;13import javax.servlet.http.HttpServletRequest;14import javax.servlet.http.HttpServletResponse;15import org.cerberus.crud.entity.Label;16import org.cerberus.crud.service.ILabelService;17import org.cerberus.crud.service.impl.LabelService;18import org.cerberus.exception.CerberusException;19import org.cerberus.log.MyLogger;20import org.cerberus.servlet.api.ApiService;21import org.cerber

Full Screen

Full Screen

UpdateLabel

Using AI Code Generation

copy

Full Screen

1package org.cerberus.servlet.crud.transversaltables;2import java.io.IOException;3import java.io.PrintWriter;4import java.sql.Connection;5import java.sql.SQLException;6import java.util.logging.Level;7import java.util.logging.Logger;8import javax.servlet.ServletException;9import javax.servlet.http.HttpServlet;10import javax.servlet.http.HttpServletRequest;11import javax.servlet.http.HttpServletResponse;12import org.cerberus.crud.entity.Label;13import org.cerberus.crud.factory.IFactoryLabel;14import org.cerberus.crud.service.ILabelService;15import org.cerberus.database.DatabaseSpring;16import org.cerberus.engine.entity.MessageEvent;17import org.cerberus.engine.entity.MessageGeneral;18import org.cerberus.exception.CerberusException;19import org.cerberus.factory.impl.FactoryLabel;20import org.cerberus.log.MyLogger;21import org.cerberus.service.impl.LabelService;22import org.cerberus.servlet.api.UpdateLabel;23import org.cerberus.util.answer.Answer;24import org.cerberus.util.answer.AnswerUtil;25import org.springframework.context.ApplicationContext;26import org.springframework.web.context.support.WebApplicationContextUtils;27public class UpdateLabel extends HttpServlet {28 private ILabelService labelService;29 private IFactoryLabel factoryLabel;30 public void init() throws ServletException {31 ApplicationContext appContext = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());32 labelService = appContext.getBean(LabelService.class);33 factoryLabel = appContext.getBean(FactoryLabel.class);34 }35 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {36 response.setContentType("application/json");37 PrintWriter out = response.getWriter();38 String labelId = request.getParameter("labelId");39 String label = request.getParameter("label");40 String description = request.getParameter("description");41 String lang = request.getParameter("lang");42 MyLogger.log(UpdateLabel.class.getName(), Level.INFO, "Updating label:" + labelId + " to " + label);43 Answer ans = new Answer();44 try {45 ans = updateLabel(request, labelId, label, description, lang);46 } catch (CerberusException ex) {47 MyLogger.log(

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 methods in UpdateLabel

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful