Interface UpdateEventControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-06-05T07:24:46.242412085Z[Etc/UTC]")
@Validated
public interface UpdateEventControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UpdateEventDtoGenerated> create(@Valid UpdateEventImplDtoGenerated updateEventImplDtoGenerated) POST /api/updateEvents : createorg.springframework.http.ResponseEntity<Void> DELETE /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : deleteorg.springframework.http.ResponseEntity<List<UpdateEventDtoGenerated>> getAll()GET /api/updateEvents : getAllorg.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getEntityEvents(UUID entityId) GET /api/updateEvents/entity/{entityId} : getEntityEventsorg.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getSubscriptionUpdateEvents(UUID subscriptionId) GET /api/updateEvents/subscription/{subscriptionId} : getSubscriptionUpdateEventsorg.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getUpdateEvent(UUID subscriptionId, UUID entityId) GET /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : getUpdateEventorg.springframework.http.ResponseEntity<Void> update(UUID subscriptionId, UUID entityId, @Valid UpdateEventImplDtoGenerated updateEventImplDtoGenerated) PUT /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : update
-
Method Details
-
create
@RequestMapping(method=POST, value="/api/updateEvents", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<UpdateEventDtoGenerated> create(@Valid @RequestBody(required=false) @Valid UpdateEventImplDtoGenerated updateEventImplDtoGenerated) POST /api/updateEvents : create- Parameters:
updateEventImplDtoGenerated- (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/updateEvents/subscription/{subscriptionId}/entity/{entityId}") org.springframework.http.ResponseEntity<Void> delete(@PathVariable("subscriptionId") UUID subscriptionId, @PathVariable("entityId") UUID entityId) DELETE /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : delete- Parameters:
subscriptionId- subscriptionId (required)entityId- entityId (required)- Returns:
- No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403)
-
getAll
@RequestMapping(method=GET, value="/api/updateEvents", produces="application/json") org.springframework.http.ResponseEntity<List<UpdateEventDtoGenerated>> getAll()GET /api/updateEvents : getAll- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getEntityEvents
@RequestMapping(method=GET, value="/api/updateEvents/entity/{entityId}", produces="application/json") org.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getEntityEvents(@PathVariable("entityId") UUID entityId) GET /api/updateEvents/entity/{entityId} : getEntityEvents- Parameters:
entityId- entityId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getSubscriptionUpdateEvents
@RequestMapping(method=GET, value="/api/updateEvents/subscription/{subscriptionId}", produces="application/json") org.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getSubscriptionUpdateEvents(@PathVariable("subscriptionId") UUID subscriptionId) GET /api/updateEvents/subscription/{subscriptionId} : getSubscriptionUpdateEvents- Parameters:
subscriptionId- subscriptionId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getUpdateEvent
@RequestMapping(method=GET, value="/api/updateEvents/subscription/{subscriptionId}/entity/{entityId}", produces="application/json") org.springframework.http.ResponseEntity<UpdateEventDtoGenerated> getUpdateEvent(@PathVariable("subscriptionId") UUID subscriptionId, @PathVariable("entityId") UUID entityId) GET /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : getUpdateEvent- Parameters:
subscriptionId- subscriptionId (required)entityId- entityId (required)- 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/updateEvents/subscription/{subscriptionId}/entity/{entityId}", consumes="application/json") org.springframework.http.ResponseEntity<Void> update(@PathVariable("subscriptionId") UUID subscriptionId, @PathVariable("entityId") UUID entityId, @Valid @RequestBody(required=false) @Valid UpdateEventImplDtoGenerated updateEventImplDtoGenerated) PUT /api/updateEvents/subscription/{subscriptionId}/entity/{entityId} : update- Parameters:
subscriptionId- subscriptionId (required)entityId- entityId (required)updateEventImplDtoGenerated- (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)
-