Exemplo n.º 1
0
 /** DELETE /status_bill_services/:id -> delete the "id" status_bill_service. */
 @RequestMapping(
     value = "/status_bill_services/{id}",
     method = RequestMethod.DELETE,
     produces = MediaType.APPLICATION_JSON_VALUE)
 @Timed
 public ResponseEntity<Void> deleteStatus_bill_service(@PathVariable Long id) {
   log.debug("REST request to delete Status_bill_service : {}", id);
   status_bill_serviceService.delete(id);
   return ResponseEntity.ok()
       .headers(HeaderUtil.createEntityDeletionAlert("status_bill_service", id.toString()))
       .build();
 }