Class GroupController

    • Constructor Detail

      • GroupController

        public GroupController()
    • Method Detail

      • listGroups

        @GetMapping("/group")
        public org.springframework.http.ResponseEntity<Groups> listGroups()
      • getGroup

        @GetMapping("/group/{name:.+}")
        public org.springframework.http.ResponseEntity<Group> getGroup​(@PathVariable("name")
                                                                       String name)
      • addRoles

        public void addRoles​(GroupImpl group,
                             Group fromDomain)
      • createGroup

        @PostMapping("/group")
        public org.springframework.http.ResponseEntity<Group> createGroup​(@RequestBody
                                                                          Group group)
      • updateGroup

        @PutMapping("/group/{name:.+}")
        public org.springframework.http.ResponseEntity<Group> updateGroup​(@PathVariable("name")
                                                                          String name,
                                                                          @RequestBody
                                                                          Group group)
      • deleteGroup

        @DeleteMapping("/group/{name:.+}")
        public org.springframework.http.ResponseEntity<Void> deleteGroup​(@PathVariable("name")
                                                                         String name)