Class 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:
    Serialized Form
    • Field Detail

      • 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 Detail

      • FilterConfig

        public FilterConfig​(Boolean supported,
                            Integer maxResults)
    • Method Detail

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