Interface EnvironmentCategoryControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-06-05T07:24:45.060541301Z[Etc/UTC]")
@Validated
public interface EnvironmentCategoryControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> create(@Valid EnvironmentCategoryImplDtoGenerated environmentCategoryImplDtoGenerated) POST /api/environment-categories : createorg.springframework.http.ResponseEntity<Void> DELETE /api/environment-categories/{environmentCategoryId} : deleteorg.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> GET /api/environment-categories/{environmentCategoryId} : getorg.springframework.http.ResponseEntity<List<EnvironmentCategoryDtoGenerated>> getAll()GET /api/environment-categories : getAllorg.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> update(@Valid EnvironmentCategoryImplDtoGenerated environmentCategoryImplDtoGenerated) PUT /api/environment-categories : update
-
Method Details
-
create
@RequestMapping(method=POST, value="/api/environment-categories", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> create(@Valid @RequestBody(required=false) @Valid EnvironmentCategoryImplDtoGenerated environmentCategoryImplDtoGenerated) POST /api/environment-categories : create- Parameters:
environmentCategoryImplDtoGenerated- (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/environment-categories/{environmentCategoryId}") org.springframework.http.ResponseEntity<Void> delete(@PathVariable("environmentCategoryId") UUID environmentCategoryId) DELETE /api/environment-categories/{environmentCategoryId} : delete- Parameters:
environmentCategoryId- environmentCategoryId (required)- Returns:
- No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403)
-
get
@RequestMapping(method=GET, value="/api/environment-categories/{environmentCategoryId}", produces="application/json") org.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> get(@PathVariable("environmentCategoryId") UUID environmentCategoryId) GET /api/environment-categories/{environmentCategoryId} : get- Parameters:
environmentCategoryId- environmentCategoryId (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/environment-categories", produces="application/json") org.springframework.http.ResponseEntity<List<EnvironmentCategoryDtoGenerated>> getAll()GET /api/environment-categories : 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/environment-categories", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<EnvironmentCategoryDtoGenerated> update(@Valid @RequestBody(required=false) @Valid EnvironmentCategoryImplDtoGenerated environmentCategoryImplDtoGenerated) PUT /api/environment-categories : update- Parameters:
environmentCategoryImplDtoGenerated- (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)
-