Class MeController


  • @RestController
    public class MeController
    extends Controller
    Me controller for the SCIM server
    Author:
    wouter
    • Constructor Detail

      • MeController

        public MeController()
    • Method Detail

      • putMe

        @PutMapping(path="/scim/v2/Me",
                    produces={"application/scim+json","application/json"})
        public org.springframework.http.ResponseEntity<Map<String,​Object>> putMe​(@RequestBody
                                                                                       Map<String,​Object> entity,
                                                                                       @RequestParam(required=false,name="attributes")
                                                                                       String attributes,
                                                                                       @RequestParam(required=false,name="excludedAttributes")
                                                                                       String excludedAttributes,
                                                                                       javax.servlet.http.HttpServletRequest request,
                                                                                       javax.servlet.http.HttpServletResponse response)
      • getMe

        @GetMapping(path="/scim/v2/Me",
                    produces={"application/scim+json","application/json"})
        public org.springframework.http.ResponseEntity<Map<String,​Object>> getMe​(@RequestParam(required=false,name="attributes")
                                                                                       String attributes,
                                                                                       @RequestParam(required=false,name="excludedAttributes")
                                                                                       String excludedAttributes,
                                                                                       javax.servlet.http.HttpServletRequest request,
                                                                                       javax.servlet.http.HttpServletResponse response)
      • delete

        @DeleteMapping(path="/scim/v2/Me")
        public org.springframework.http.ResponseEntity<?> delete​(@PathVariable
                                                                 String resourceType,
                                                                 @PathVariable
                                                                 String id)
      • post

        @PostMapping(path="/scim/v2/Me",
                     produces={"application/scim+json","application/json"})
        public org.springframework.http.ResponseEntity<Map<String,​Object>> post​(@RequestBody
                                                                                      Map<String,​Object> entity,
                                                                                      @RequestParam(required=false,name="attributes")
                                                                                      String attributes,
                                                                                      @RequestParam(required=false,name="excludedAttributes")
                                                                                      String excludedAttributes,
                                                                                      javax.servlet.http.HttpServletRequest request,
                                                                                      javax.servlet.http.HttpServletResponse response)
      • patchMe

        @PatchMapping(path="/scim/v2/Me",
                      produces={"application/scim+json","application/json"})
        public org.springframework.http.ResponseEntity<Map<String,​Object>> patchMe​(@RequestBody
                                                                                         Map<String,​Object> entity,
                                                                                         @RequestParam(required=false,name="attributes")
                                                                                         String attributes,
                                                                                         @RequestParam(required=false,name="excludedAttributes")
                                                                                         String excludedAttributes,
                                                                                         javax.servlet.http.HttpServletRequest request,
                                                                                         javax.servlet.http.HttpServletResponse response)