Class Filter

java.lang.Object
com.microsoft.graph.models.Filter
All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject

public class Filter extends Object implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Filter.
  • Field Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • categoryFilterGroups

      @SerializedName(value="categoryFilterGroups", alternate="CategoryFilterGroups") @Expose @Nullable public List<FilterGroup> categoryFilterGroups
      The Category Filter Groups. *Experimental* Filter group set used to decide whether given object belongs and should be processed as part of this object mapping. An object is considered in scope if ANY of the groups in the collection is evaluated to true.
    • groups

      @SerializedName(value="groups", alternate="Groups") @Expose @Nullable public List<FilterGroup> groups
      The Groups. Filter group set used to decide whether given object is in scope for provisioning. This is the filter which should be used in most cases. If an object used to satisfy this filter at a given moment, and then the object or the filter was changed so that filter is not satisfied any longer, such object will get de-provisioned'. An object is considered in scope if ANY of the groups in the collection is evaluated to true.
    • inputFilterGroups

      @SerializedName(value="inputFilterGroups", alternate="InputFilterGroups") @Expose @Nullable public List<FilterGroup> inputFilterGroups
      The Input Filter Groups. *Experimental* Filter group set used to filter out objects at the early stage of reading them from the directory. If an object doesn't satisfy this filter it will not be processed further. Important to understand is that if an object used to satisfy this filter at a given moment, and then the object or the filter was changed so that filter is no longer satisfied, such object will NOT get de-provisioned. An object is considered in scope if ANY of the groups in the collection is evaluated to true.
  • Constructor Details

    • Filter

      public Filter()
  • Method Details

    • additionalDataManager

      @Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()
      Specified by:
      additionalDataManager in interface com.microsoft.graph.serializer.IJsonBackedObject
    • setRawObject

      public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json)
      Sets the raw JSON object
      Specified by:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to