Class ResolutionStepController

java.lang.Object
org.apache.clusterbr.zupportl5.controller.ResolutionStepController

@RestController @RequestMapping("/api/resolution-steps") public class ResolutionStepController extends Object

REST-API Endpoints --

  • GET /api/resolution-steps/{id}: Returns data from the API
  • PUT /api/resolution-steps/{id}: Updates an entry by ID
  • DELETE /api/resolution-steps/{id}: Deletes an entry by ID

UML Diagrams:

UML CLASS Diagram

UML USECASE Diagram

UML SEQ Diagram

UML ACTIVITY Diagram

Since:
2024-1108
Author:
arcbrth@gmail.com
  • Constructor Details

  • Method Details

    • getAll

      @GetMapping public List<ResolutionStep> getAll()
    • getById

      @GetMapping("/{id}") public org.springframework.http.ResponseEntity<ResolutionStep> getById(@PathVariable Integer id)
    • save

      @PostMapping public org.springframework.http.ResponseEntity<ResolutionStep> save(@RequestBody ResolutionStep item)
    • update

      @PutMapping("/{id}") public org.springframework.http.ResponseEntity<ResolutionStep> update(@PathVariable Integer id, @RequestBody ResolutionStep item)
    • deleteById

      @DeleteMapping("/{id}") public org.springframework.http.ResponseEntity<Void> deleteById(@PathVariable Integer id)