Class GroupController


  • @RestController
    @RequestMapping("/api/group")
    @ConditionalOnProperty(value="nae.group.web.enabled",
                           havingValue="true",
                           matchIfMissing=true)
    public class GroupController
    extends java.lang.Object
    • Method Detail

      • getAllGroups

        @PreAuthorize("@authorizationService.hasAuthority(\'ADMIN\')")
        @GetMapping(value="/all",
                    produces="application/hal+json")
        public GroupsResource getAllGroups()