Uses of Interface
org.apache.jackrabbit.oak.plugins.observation.filter.EventFilter
-
Packages that use EventFilter Package Description org.apache.jackrabbit.oak.plugins.observation org.apache.jackrabbit.oak.plugins.observation.filter -
-
Uses of EventFilter in org.apache.jackrabbit.oak.plugins.observation
Constructors in org.apache.jackrabbit.oak.plugins.observation with parameters of type EventFilter Constructor Description FilteredHandler(EventFilter filter, EventHandler handler) -
Uses of EventFilter in org.apache.jackrabbit.oak.plugins.observation.filter
Classes in org.apache.jackrabbit.oak.plugins.observation.filter that implement EventFilter Modifier and Type Class Description classACFilterEventTypeFilterfilters based on the access rights of the observing session.classAddSubtreeFilterThisEventFilterimplementation excludes events for child nodes of added nodes.classConstantFilterTODO documentclassDeleteSubtreeFilterThisEventFilterimplementation excludes events for child nodes of removed nodes.classEventTypeFilterEventTypeFilterfilters based on event types as defined byObservationManager.addEventListener().classGlobbingPathFilterThisFilterimplementation supports filtering on paths using simple glob patterns.classMoveFilterThis filter implementation excludes generating add node events for child nodes of the destination of a move operation.classUniversalFilterAn universalFilterimplementation, which can be parametrised by aUniversalFilter.Selectorand aPredicate.classVisibleFilterEvent filter that hides all non-visible content.Methods in org.apache.jackrabbit.oak.plugins.observation.filter that return EventFilter Modifier and Type Method Description static @NotNull EventFilterFilters. all(@NotNull List<EventFilter> filters)A filter that matches if and only if all of the filters passed to this method matches.static @NotNull EventFilterFilters. all(@NotNull EventFilter... filters)A filter that matches if and only if all of the filters passed to this method matches.static @NotNull EventFilterFilters. any(@NotNull List<EventFilter> filters)A filter that matches if and only if any of the filters passed to this method matches.static @NotNull EventFilterFilters. any(@NotNull EventFilter... filters)A filter that matches if and only if any of the filters passed to this method matches.EventFilterACFilter. create(String name, NodeState before, NodeState after)EventFilterAddSubtreeFilter. create(String name, NodeState before, NodeState after)EventFilterConstantFilter. create(String name, NodeState before, NodeState after)EventFilterDeleteSubtreeFilter. create(String name, NodeState before, NodeState after)@Nullable EventFilterEventFilter. create(String name, NodeState before, NodeState after)Factory for creating a filter instance for the given child nodeEventFilterEventTypeFilter. create(String name, NodeState before, NodeState after)EventFilterGlobbingPathFilter. create(String name, NodeState before, NodeState after)EventFilterMoveFilter. create(String name, NodeState before, NodeState after)EventFilterUniversalFilter. create(String name, NodeState before, NodeState after)EventFilterVisibleFilter. create(String name, NodeState before, NodeState after)@NotNull EventFilterFilterBuilder.AddSubtreeTreeCondition. createFilter(@NotNull NodeState before, @NotNull NodeState after)@NotNull EventFilterFilterBuilder.Condition. createFilter(@NotNull NodeState before, @NotNull NodeState after)@NotNull EventFilterFilterBuilder.DeleteSubtreeTreeCondition. createFilter(@NotNull NodeState before, @NotNull NodeState after)@NotNull EventFilterFilterBuilder.MoveCondition. createFilter(@NotNull NodeState before, @NotNull NodeState after)static @NotNull EventFilterFilters. excludeAll()@NotNull EventFilterFilterProvider. getFilter(@NotNull NodeState before, @NotNull NodeState after)Factory method for creating aFilterfor the passed before and after states.static EventFilterAddSubtreeFilter. getInstance()static EventFilterDeleteSubtreeFilter. getInstance()static @NotNull EventFilterFilters. includeAll()static @NotNull EventFilterFilters. not(@NotNull EventFilter filter)A filter that matches if and only if any the filter passed to this method does not match.Methods in org.apache.jackrabbit.oak.plugins.observation.filter with parameters of type EventFilter Modifier and Type Method Description static @NotNull EventFilterFilters. all(@NotNull EventFilter... filters)A filter that matches if and only if all of the filters passed to this method matches.static @NotNull EventFilterFilters. any(@NotNull EventFilter... filters)A filter that matches if and only if any of the filters passed to this method matches.static @NotNull EventFilterFilters. not(@NotNull EventFilter filter)A filter that matches if and only if any the filter passed to this method does not match.Method parameters in org.apache.jackrabbit.oak.plugins.observation.filter with type arguments of type EventFilter Modifier and Type Method Description static @NotNull EventFilterFilters. all(@NotNull List<EventFilter> filters)A filter that matches if and only if all of the filters passed to this method matches.static @NotNull EventFilterFilters. any(@NotNull List<EventFilter> filters)A filter that matches if and only if any of the filters passed to this method matches.
-