Interface AlertControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-06-05T07:24:44.133475020Z[Etc/UTC]")
@Validated
public interface AlertControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AlertDtoGenerated> create(@Valid AlertImplDtoGenerated alertImplDtoGenerated) POST /api/alerts/create : createorg.springframework.http.ResponseEntity<Void> DELETE /api/alerts/{alertId} : deleteorg.springframework.http.ResponseEntity<AlertDtoGenerated> GET /api/alerts/{alertId} : getAlertorg.springframework.http.ResponseEntity<List<AlertDtoGenerated>> getAll()GET /api/alerts : getAllorg.springframework.http.ResponseEntity<Void> update(@Valid AlertImplDtoGenerated alertImplDtoGenerated) PUT /api/alerts/create : update
-
Method Details
-
create
@RequestMapping(method=POST, value="/api/alerts/create", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<AlertDtoGenerated> create(@Valid @RequestBody(required=false) @Valid AlertImplDtoGenerated alertImplDtoGenerated) POST /api/alerts/create : create- Parameters:
alertImplDtoGenerated- (optional)- Returns:
- OK (status code 200) or Created (status code 201) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
delete
@RequestMapping(method=DELETE, value="/api/alerts/{alertId}") org.springframework.http.ResponseEntity<Void> delete(@PathVariable("alertId") UUID alertId) DELETE /api/alerts/{alertId} : delete- Parameters:
alertId- alertId (required)- Returns:
- No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403)
-
getAlert
@RequestMapping(method=GET, value="/api/alerts/{alertId}", produces="application/json") org.springframework.http.ResponseEntity<AlertDtoGenerated> getAlert(@PathVariable("alertId") UUID alertId) GET /api/alerts/{alertId} : getAlert- Parameters:
alertId- alertId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getAll
@RequestMapping(method=GET, value="/api/alerts", produces="application/json") org.springframework.http.ResponseEntity<List<AlertDtoGenerated>> getAll()GET /api/alerts : getAll- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
update
@RequestMapping(method=PUT, value="/api/alerts/create", consumes="application/json") org.springframework.http.ResponseEntity<Void> update(@Valid @RequestBody(required=false) @Valid AlertImplDtoGenerated alertImplDtoGenerated) PUT /api/alerts/create : update- Parameters:
alertImplDtoGenerated- (optional)- Returns:
- Created (status code 201) or No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-