Class ActionController


  • @RestController
    @RequestMapping("/api/action/v1")
    @CrossOrigin(origins="*")
    public class ActionController
    extends Object
    • Method Detail

      • allActions

        @PreAuthorize("hasAuthority(\'COMPONENT_READ\')")
        @GetMapping(produces="application/json")
        public List<ActionDto> allActions()
      • byActionId

        @PreAuthorize("hasAuthority(\'COMPONENT_READ\')")
        @GetMapping(path="/{actionId}",
                    produces="application/json")
        public ActionDto byActionId​(@PathVariable
                                    String actionId)