Package com.microsoft.graph.models
Class Filter
java.lang.Object
com.microsoft.graph.models.Filter
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Filter.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Category Filter Groups.The Groups.The Input Filter Groups.the OData type of the object as returned by the service -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
categoryFilterGroups
@SerializedName(value="categoryFilterGroups", alternate="CategoryFilterGroups") @Expose @Nullable public List<FilterGroup> categoryFilterGroupsThe 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> groupsThe 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> inputFilterGroupsThe 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:
additionalDataManagerin interfacecom.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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-