Class ViewIncidentDetailController

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

@RestController @RequestMapping("/api/view-incident-details") public class ViewIncidentDetailController extends Object

REST-API Endpoints --

  • GET /api/view-incident-details/{id}: Returns data from the API

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 org.springframework.http.ResponseEntity<List<ViewIncidentDetail>> getAll()
    • getById

      @GetMapping("/{id}") public org.springframework.http.ResponseEntity<ViewIncidentDetail> getById(@PathVariable Long id)