Class PatchConfig

  • 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 PatchConfig
    extends ScimObjectNode
    author Pascal Knueppel
    created at: 18.10.2019 - 11:12

    A complex type that specifies PATCH configuration options. REQUIRED. See Section 3.5.2 of [RFC7644].
    See Also:
    Serialized Form
    • Constructor Detail

      • PatchConfig

        public PatchConfig​(Boolean supported,
                           Boolean activateSailsPointWorkaround)
      • PatchConfig

        public PatchConfig()
    • Method Detail

      • isSupported

        public boolean isSupported()
        A Boolean value specifying whether the operation is supported. REQUIRED.
      • setSupported

        public void setSupported​(Boolean supported)
        A Boolean value specifying whether the operation is supported. REQUIRED.
      • isActivateSailsPointWorkaround

        public boolean isActivateSailsPointWorkaround()
        A Workaround to handle patch replace-ops on single complex types as add operations.
      • setActivateSailsPointWorkaround

        public void setActivateSailsPointWorkaround​(Boolean activateSailsPointWorkaround)
        A Workaround to handle patch replace-ops on single complex types as add operations.