@RestController
@RequestMapping("/api/action/v1")
public class ActionController
extends Object
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Details
-
allActions
@PreAuthorize("hasAuthority(\'SCENARIO_READ\')")
@GetMapping(produces="application/json")
public List<ActionDto> allActions()
-
byActionId
@PreAuthorize("hasAuthority(\'SCENARIO_READ\')")
@GetMapping(path="/{actionId}",
produces="application/json")
public ActionDto byActionId(@PathVariable
String actionId)