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.FilterConfig
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 FilterConfig extends ScimObjectNode
author Pascal Knueppel
created at: 18.10.2019 - 10:56

A complex type that specifies FILTER options. REQUIRED. See Section 3.4.2.2 of [RFC7644].
See Also:
  • Field Details

    • DEFAULT_MAX_RESULTS

      protected static final Integer DEFAULT_MAX_RESULTS
      the default value for the max results value. Default is 1. This will enforce the developer to modify the service provider configuration to the applications requirements
  • Constructor Details

    • FilterConfig

      public FilterConfig()
    • FilterConfig

      public FilterConfig(Boolean supported, Integer maxResults)
  • Method Details

    • isSupported

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

      public void setSupported(Boolean supported)
      A Boolean value specifying whether or not the operation is supported. REQUIRED.
    • getMaxResults

      public Integer getMaxResults()
      An integer value specifying the maximum number of resources returned in a response. REQUIRED.
    • setMaxResults

      public void setMaxResults(Integer maxResults)
      An integer value specifying the maximum number of resources returned in a response. REQUIRED.
    • builder

      public static FilterConfig.FilterConfigBuilder builder()