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.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:
  • Constructor Details

    • PatchConfig

      public PatchConfig()
    • PatchConfig

      public PatchConfig(Boolean supported, Boolean ignoreUnknownAttributes, Boolean doNotFailOnNoTarget, Boolean activateSailsPointWorkaround, Boolean activateMsAzureFilterWorkaround, Boolean activateMsAzureValueSubAttributeWorkaround, Boolean activateMsAzureComplexSimpleValueWorkaround)
  • Method Details

    • 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.
    • isIgnoreUnknownAttribute

      public boolean isIgnoreUnknownAttribute()
      If activated unknown attributes on patch expressions will no longer result in a BadRequestException.
    • setIgnoreUnknownAttribute

      public void setIgnoreUnknownAttribute(Boolean ignoreUnknownAttribute)
      If activated unknown attributes on patch expressions will no longer result in a BadRequestException.
    • isDoNotFailOnNoTarget

      public boolean isDoNotFailOnNoTarget()
      prevents that a patch-operation fails if the target of the attributes pointer is missing. In this case the operation is simply ignored.
    • setDoNotFailOnNoTarget

      public void setDoNotFailOnNoTarget(Boolean doNotFailOnNoTarget)
      prevents that a patch-operation fails if the target of the attributes pointer is missing. In this case the operation is simply ignored.
    • isSailsPointWorkaroundActive

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

      public void setSailsPointWorkaroundActive(Boolean sailsPointWorkaroundActive)
      A Workaround to handle patch replace-ops on single complex types as add operations.
    • isMsAzureFilterWorkaroundActive

      public boolean isMsAzureFilterWorkaroundActive()
      A workaround to handle filter-expressions in patch-paths as attributes that will be added to the resource
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchFilterWorkaround
    • setMsAzureFilterWorkaroundActive

      public void setMsAzureFilterWorkaroundActive(Boolean msAzureWorkaroundActive)
      A workaround to handle filter-expressions in patch-paths as attributes that will be added to the resource
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchFilterWorkaround
    • isMsAzureValueSubAttributeWorkaroundActive

      public boolean isMsAzureValueSubAttributeWorkaroundActive()
      A workaround to handle MsAzures illegal value-subattribute notation
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchValueSubAttributeRebuilder
    • setMsAzureValueSubAttributeWorkaroundActive

      public void setMsAzureValueSubAttributeWorkaroundActive(Boolean msAzureValueSubAttributeWorkaroundActive)
      A workaround to handle MsAzures illegal value-subattribute notation
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchValueSubAttributeRebuilder
    • isMsAzureComplexSimpleValueWorkaroundActive

      public boolean isMsAzureComplexSimpleValueWorkaroundActive()
      A workaround to handle MsAzures illegal complex-simple-value notation.
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchComplexValueRebuilder
    • setMsAzureComplexSimpleValueWorkaroundActive

      public void setMsAzureComplexSimpleValueWorkaroundActive(Boolean msAzureComplexSimpleValueWorkaroundActive)
      A workaround to handle MsAzures illegal complex-simple-value notation.
      See Also:
      • de.captaingoldfish.scim.sdk.server.patch.workarounds.msazure.MsAzurePatchComplexValueRebuilder
    • builder

      public static PatchConfig.PatchConfigBuilder builder()