How to use findApplicationObjectList method of org.cerberus.servlet.crud.countryenvironment.ReadApplicationObject class

Best Cerberus-source code snippet using org.cerberus.servlet.crud.countryenvironment.ReadApplicationObject.findApplicationObjectList

Source:ReadApplicationObject.java Github

copy

Full Screen

...115 answer = findValuesForColumnFilter(appContext, request);116 jsonResponse = (JSONObject) answer.getItem();117 }118 else if (request.getParameter("application") == null) {119 answer = findApplicationObjectList(null, appContext, userHasPermissions, request);120 jsonResponse = (JSONObject) answer.getItem();121 } else if (request.getParameter("iDisplayStart") == null){122 answer = findApplicationObjectList(request.getParameter("application"), appContext, userHasPermissions);123 jsonResponse = (JSONObject) answer.getItem();124 }else {125 answer = findApplicationObjectList(request.getParameter("application"), appContext, userHasPermissions, request);126 jsonResponse = (JSONObject) answer.getItem();127 }128 jsonResponse.put("messageType", answer.getResultMessage().getMessage().getCodeString());129 jsonResponse.put("message", answer.getResultMessage().getDescription());130 jsonResponse.put("sEcho", echo);131 response.getWriter().print(jsonResponse.toString());132 } catch (JSONException e) {133 LOG.warn(e);134 //returns a default error message with the json format that is able to be parsed by the client-side135 response.getWriter().print(AnswerUtil.createGenericErrorAnswer());136 }137 }138 // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">139 /**140 * Handles the HTTP <code>GET</code> method.141 *142 * @param request servlet request143 * @param response servlet response144 * @throws ServletException if a servlet-specific error occurs145 * @throws IOException if an I/O error occurs146 */147 @Override148 protected void doGet(HttpServletRequest request, HttpServletResponse response)149 throws ServletException, IOException {150 try {151 processRequest(request, response);152 } catch (CerberusException ex) {153 LOG.warn(ex);154 }155 }156 /**157 * Handles the HTTP <code>POST</code> method.158 *159 * @param request servlet request160 * @param response servlet response161 * @throws ServletException if a servlet-specific error occurs162 * @throws IOException if an I/O error occurs163 */164 @Override165 protected void doPost(HttpServletRequest request, HttpServletResponse response)166 throws ServletException, IOException {167 try {168 processRequest(request, response);169 } catch (CerberusException ex) {170 LOG.warn(ex);171 }172 }173 /**174 * Returns a short description of the servlet.175 *176 * @return a String containing servlet description177 */178 @Override179 public String getServletInfo() {180 return "Short description";181 }// </editor-fold>182 private AnswerItem findApplicationObjectList(String application, ApplicationContext appContext, boolean userHasPermissions, HttpServletRequest request) throws JSONException {183 AnswerItem item = new AnswerItem();184 JSONObject object = new JSONObject();185 applicationObjectService = appContext.getBean(IApplicationObjectService.class);186 int startPosition = Integer.valueOf(ParameterParserUtil.parseStringParam(request.getParameter("iDisplayStart"), "0"));187 int length = Integer.valueOf(ParameterParserUtil.parseStringParam(request.getParameter("iDisplayLength"), "0"));188 /*int sEcho = Integer.valueOf(request.getParameter("sEcho"));*/189 String searchParameter = ParameterParserUtil.parseStringParam(request.getParameter("sSearch"), "");190 int columnToSortParameter = Integer.parseInt(ParameterParserUtil.parseStringParam(request.getParameter("iSortCol_0"), "2"));191 String sColumns = ParameterParserUtil.parseStringParam(request.getParameter("sColumns"), "Application,Object");192 String columnToSort[] = sColumns.split(",");193 String columnName = columnToSort[columnToSortParameter];194 String sort = ParameterParserUtil.parseStringParam(request.getParameter("sSortDir_0"), "asc");195 List<String> individualLike = new ArrayList(Arrays.asList(ParameterParserUtil.parseStringParam(request.getParameter("sLike"), "").split(",")));196 Map<String, List<String>> individualSearch = new HashMap<>();197 for (int a = 0; a < columnToSort.length; a++) {198 if (null != request.getParameter("sSearch_" + a) && !request.getParameter("sSearch_" + a).isEmpty()) {199 List<String> search = new ArrayList(Arrays.asList(request.getParameter("sSearch_" + a).split(",")));200 if(individualLike.contains(columnToSort[a])) {201 individualSearch.put(columnToSort[a]+":like", search);202 }else {203 individualSearch.put(columnToSort[a], search);204 } 205 }206 }207 AnswerList resp = applicationObjectService.readByApplicationByCriteria(application, startPosition, length, columnName, sort, searchParameter, individualSearch);208 JSONArray jsonArray = new JSONArray();209 if (resp.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {//the service was able to perform the query, then we should get all values210 for (ApplicationObject applicationObject : (List<ApplicationObject>) resp.getDataList()) {211 jsonArray.put(convertApplicationObjectToJSONObject(applicationObject));212 }213 }214 object.put("hasPermissions", userHasPermissions);215 object.put("contentTable", jsonArray);216 object.put("iTotalRecords", resp.getTotalRows());217 object.put("iTotalDisplayRecords", resp.getTotalRows());218 item.setItem(object);219 item.setResultMessage(resp.getResultMessage());220 return item;221 }222 private AnswerItem findApplicationObjectList(String application, ApplicationContext appContext, boolean userHasPermissions) throws JSONException {223 AnswerItem item = new AnswerItem();224 JSONObject object = new JSONObject();225 applicationObjectService = appContext.getBean(IApplicationObjectService.class);226 AnswerList resp = applicationObjectService.readByApplication(application);227 JSONArray jsonArray = new JSONArray();228 if (resp.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {//the service was able to perform the query, then we should get all values229 for (ApplicationObject applicationObject : (List<ApplicationObject>) resp.getDataList()) {230 jsonArray.put(convertApplicationObjectToJSONObject(applicationObject));231 }232 }233 object.put("hasPermissions", userHasPermissions);234 object.put("contentTable", jsonArray);235 object.put("iTotalRecords", resp.getTotalRows());236 object.put("iTotalDisplayRecords", resp.getTotalRows());...

Full Screen

Full Screen

findApplicationObjectList

Using AI Code Generation

copy

Full Screen

1import org.cerberus.servlet.crud.countryenvironment.ReadApplicationObject;2import org.cerberus.util.answer.AnswerItem;3ReadApplicationObject readAppObj = new ReadApplicationObject();4AnswerItem answer = readAppObj.findApplicationObjectList("QA", "TEST");5String result = answer.getItem().toString();6System.out.println(result);7[{"system":"TEST","application":"QA","object":"TC01","description":"Testcase 01","type":"TESTCASE","usrCreated":"admin","dateCreated":"2018-10-18 09:00:00.0","usrModif":"admin","dateModif":"2018-10-18 09:00:00.0"},{"system":"TEST","application":"QA","object":"TC02","description":"Testcase 02","type":"TESTCASE","usrCreated":"admin","dateCreated":"2018-10-18 09:00:00.0","usrModif":"admin","dateModif":"2018-10-18 09:00:00.0"}]

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