Class SystemCategoryController
java.lang.Object
org.qubership.atp.environments.service.rest.server.SystemCategoryController
@RequestMapping("/api/system-categories")
@RestController
public class SystemCategoryController
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateSystemCategory(SystemCategoryImpl systemCategories) voiddeleteCategory(UUID id) updateSystemCategory(SystemCategoryImpl systemCategories) Update system category by id and name.
-
Constructor Details
-
SystemCategoryController
-
-
Method Details
-
getAllSystemCategories
-
getShortAll
-
getSystemCategory
@GetMapping("/{systemCategoryId}") public SystemCategory getSystemCategory(@PathVariable("systemCategoryId") UUID id) -
createSystemCategory
@PostMapping public SystemCategory createSystemCategory(@RequestBody SystemCategoryImpl systemCategories) -
updateSystemCategory
@PutMapping public SystemCategory updateSystemCategory(@RequestBody SystemCategoryImpl systemCategories) Update system category by id and name. -
deleteCategory
@DeleteMapping("/{systemCategoryId}") public void deleteCategory(@PathVariable("systemCategoryId") UUID id)
-