java.lang.Object
com.fasterxml.jackson.databind.JsonSerializable.Base
com.fasterxml.jackson.databind.JsonNode
com.fasterxml.jackson.databind.node.BaseJsonNode
com.fasterxml.jackson.databind.node.ContainerNode<com.fasterxml.jackson.databind.node.ObjectNode>
com.fasterxml.jackson.databind.node.ObjectNode
de.captaingoldfish.scim.sdk.common.resources.base.ScimObjectNode
de.captaingoldfish.scim.sdk.common.resources.complex.Manager
All Implemented Interfaces:
com.fasterxml.jackson.core.TreeNode, com.fasterxml.jackson.databind.JsonSerializable, com.fasterxml.jackson.databind.node.JsonNodeCreator, ScimNode, Serializable, Iterable<com.fasterxml.jackson.databind.JsonNode>

public class Manager extends ScimObjectNode
author Pascal Knueppel
created at: 11.10.2019 - 12:36

The user's manager. A complex type that optionally allows service providers to represent organizational hierarchy by referencing the "id" attribute of another User.
See Also:
  • Constructor Details

    • Manager

      public Manager()
    • Manager

      public Manager(String value, String displayName, String ref)
  • Method Details

    • getDisplayName

      public Optional<String> getDisplayName()
      The displayName of the user's manager. This attribute is OPTIONAL, and mutability is "readOnly".
    • setDisplayName

      public void setDisplayName(String displayName)
      The displayName of the user's manager. This attribute is OPTIONAL, and mutability is "readOnly".
    • getValue

      public Optional<String> getValue()
      The "id" of the SCIM resource representing the user's manager. RECOMMENDED.
    • setValue

      public void setValue(String value)
      The "id" of the SCIM resource representing the user's manager. RECOMMENDED.
    • getRef

      public Optional<String> getRef()
      $ref The URI of the SCIM resource representing the User's manager. RECOMMENDED.
    • setRef

      public void setRef(String ref)
      $ref The URI of the SCIM resource representing the User's manager. RECOMMENDED.
    • builder

      public static Manager.ManagerBuilder builder()