/** * GET /labels : get all the labels. * * @return the ResponseEntity with status 200 (OK) and the list of labels in body */ @RequestMapping( value = "/labels", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public List<Label> getAllLabels() { log.debug("REST request to get all Labels"); List<Label> labels = labelRepository.findAll(); return labels; }
/** * GET /labels/:id : get the "id" label. * * @param id the id of the label to retrieve * @return the ResponseEntity with status 200 (OK) and with body the label, or with status 404 * (Not Found) */ @RequestMapping( value = "/labels/{id}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<Label> getLabel(@PathVariable Long id) { log.debug("REST request to get Label : {}", id); Label label = labelRepository.findOne(id); return Optional.ofNullable(label) .map(result -> new ResponseEntity<>(result, HttpStatus.OK)) .orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND)); }
/** * DELETE /labels/:id : delete the "id" label. * * @param id the id of the label to delete * @return the ResponseEntity with status 200 (OK) */ @RequestMapping( value = "/labels/{id}", method = RequestMethod.DELETE, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<Void> deleteLabel(@PathVariable Long id) { log.debug("REST request to delete Label : {}", id); labelRepository.delete(id); labelSearchRepository.delete(id); return ResponseEntity.ok() .headers(HeaderUtil.createEntityDeletionAlert("label", id.toString())) .build(); }
/** * PUT /labels : Updates an existing label. * * @param label the label to update * @return the ResponseEntity with status 200 (OK) and with body the updated label, or with status * 400 (Bad Request) if the label is not valid, or with status 500 (Internal Server Error) if * the label couldnt be updated * @throws URISyntaxException if the Location URI syntax is incorrect */ @RequestMapping( value = "/labels", method = RequestMethod.PUT, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<Label> updateLabel(@Valid @RequestBody Label label) throws URISyntaxException { log.debug("REST request to update Label : {}", label); if (label.getId() == null) { return createLabel(label); } Label result = labelRepository.save(label); labelSearchRepository.save(result); return ResponseEntity.ok() .headers(HeaderUtil.createEntityUpdateAlert("label", label.getId().toString())) .body(result); }
/** * POST /labels : Create a new label. * * @param label the label to create * @return the ResponseEntity with status 201 (Created) and with body the new label, or with * status 400 (Bad Request) if the label has already an ID * @throws URISyntaxException if the Location URI syntax is incorrect */ @RequestMapping( value = "/labels", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<Label> createLabel(@Valid @RequestBody Label label) throws URISyntaxException { log.debug("REST request to save Label : {}", label); if (label.getId() != null) { return ResponseEntity.badRequest() .headers( HeaderUtil.createFailureAlert( "label", "idexists", "A new label cannot already have an ID")) .body(null); } Label result = labelRepository.save(label); labelSearchRepository.save(result); return ResponseEntity.created(new URI("/api/labels/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert("label", result.getId().toString())) .body(result); }