Class MeController

java.lang.Object
be.personify.iam.scim.rest.Controller
be.personify.iam.scim.rest.MeController

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

    • MeController

      public MeController()
  • Method Details

    • 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, jakarta.servlet.http.HttpServletRequest request, jakarta.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, jakarta.servlet.http.HttpServletRequest request, jakarta.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, jakarta.servlet.http.HttpServletRequest request, jakarta.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, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response)