Class OakEventFilterImpl


  • public class OakEventFilterImpl
    extends OakEventFilter
    Implements OakEventFilter which is an extension to the JackrabbitEventFilter with features only supported by Oak.
    • Constructor Detail

    • Method Detail

      • setAbsPath

        public JackrabbitEventFilter setAbsPath​(java.lang.String absPath)
        Description copied from class: JackrabbitEventFilter
        Sets the absPath parameter of the filter. If left unset, this parameter defaults to null.
        Overrides:
        setAbsPath in class JackrabbitEventFilter
        Parameters:
        absPath - an absolute path String.
        Returns:
        This EventFilter object with the absPath parameter set.
      • setAdditionalPaths

        public JackrabbitEventFilter setAdditionalPaths​(java.lang.String... absPaths)
        Description copied from class: JackrabbitEventFilter
        Sets the absPaths parameter of the filter. If left unset, this parameter defaults to an empty array.
        Overrides:
        setAdditionalPaths in class JackrabbitEventFilter
        Parameters:
        absPaths - an absolute path String array.
        Returns:
        This EventFilter object with the absPaths parameter set.
      • setEventTypes

        public JackrabbitEventFilter setEventTypes​(int eventTypes)
        Description copied from class: JackrabbitEventFilter
        Sets the eventTypes parameter of the filter. If left unset, this parameter defaults to 0.
        Overrides:
        setEventTypes in class JackrabbitEventFilter
        Parameters:
        eventTypes - an int.
        Returns:
        This EventFilter object with the eventTypes parameter set.
      • setExcludedPaths

        public JackrabbitEventFilter setExcludedPaths​(java.lang.String... excludedPaths)
        Description copied from class: JackrabbitEventFilter
        Sets the excludedPaths parameter of the filter. If left unset, this parameter defaults to an empty array.
        Overrides:
        setExcludedPaths in class JackrabbitEventFilter
        Parameters:
        excludedPaths - an absolute path String array.
        Returns:
        This EventFilter object with the excludedPaths parameter set.
      • setIdentifiers

        public JackrabbitEventFilter setIdentifiers​(java.lang.String[] identifiers)
        Description copied from class: JackrabbitEventFilter
        Sets the identifiers parameter of the filter. If left unset, this parameter defaults to null.
        Overrides:
        setIdentifiers in class JackrabbitEventFilter
        Parameters:
        identifiers - a String array.
        Returns:
        This EventFilter object with the identifiers parameter set.
      • setIsDeep

        public JackrabbitEventFilter setIsDeep​(boolean isDeep)
        Description copied from class: JackrabbitEventFilter
        Sets the isDeep parameter of the filter. If left unset, this parameter defaults to false.
        Overrides:
        setIsDeep in class JackrabbitEventFilter
        Parameters:
        isDeep - a boolean.
        Returns:
        This EventFilter object with the isDeep parameter set.
      • setNodeTypes

        public JackrabbitEventFilter setNodeTypes​(java.lang.String[] nodeTypeNames)
        Description copied from class: JackrabbitEventFilter
        Sets the nodeTypeNames parameter of the filter. If left unset, this parameter defaults to null.
        Overrides:
        setNodeTypes in class JackrabbitEventFilter
        Parameters:
        nodeTypeNames - a String array.
        Returns:
        This EventFilter object with the nodeTypes parameter set.
      • setNoExternal

        public JackrabbitEventFilter setNoExternal​(boolean noExternal)
        Description copied from class: JackrabbitEventFilter
        Sets the noExternal parameter of the filter. If left unset, this parameter defaults to false.
        Overrides:
        setNoExternal in class JackrabbitEventFilter
        Parameters:
        noExternal - a boolean.
        Returns:
        This EventFilter object with the noExternal parameter set.
      • setNoInternal

        public JackrabbitEventFilter setNoInternal​(boolean noInternal)
        Description copied from class: JackrabbitEventFilter
        Sets the noInternal parameter of the filter. If left unset, this parameter defaults to false.
        Overrides:
        setNoInternal in class JackrabbitEventFilter
        Parameters:
        noInternal - a boolean.
        Returns:
        This EventFilter object with the noExternal parameter set.
      • setNoLocal

        public JackrabbitEventFilter setNoLocal​(boolean noLocal)
        Description copied from class: JackrabbitEventFilter
        Sets the noLocal parameter of the filter. If left unset, this parameter defaults to false.
        Overrides:
        setNoLocal in class JackrabbitEventFilter
        Parameters:
        noLocal - a boolean.
        Returns:
        This EventFilter object with the noLocal parameter set.
      • withApplyNodeTypeOnSelf

        public OakEventFilter withApplyNodeTypeOnSelf()
        Description copied from class: OakEventFilter
        This causes the node type filter to be applied on 'this' node instead of the 'parent' node, thus allows to create a filter which listens on adding/removing/etc on nodes of a particular node type (while the default was that the node type was applicable on the parent).

        Note that this is an 'either/or' thing: either the node type is applied on the parent (default) or on 'self/this' (via this switch) but not both.

        Also note that this is independent from the nodeTypeAggregate, and will only be applied to the (main) node types set on this filter, not on the nodeTypeAggregate's node types.

        Specified by:
        withApplyNodeTypeOnSelf in class OakEventFilter
        Returns:
        this filter with the filter change applied
      • withIncludeAncestorsRemove

        public OakEventFilter withIncludeAncestorsRemove()
        Description copied from class: OakEventFilter
        This causes the registration of independent, additional !deep NODE_REMOVED filter-conditions of all parents of the include paths (both normal and glob). (These additional filter-conditions are added in 'OR' mode to the otherwise resulting filter-conditions, thus you can still have an independent deep/!deep flag too)
        • include path /a/b/c/d results in additional !deep NODE_REMOVED filters on /a/b/c, on /a/b and on /a
        • include path /a/b/** results in additional !deep NODE_REMOVED filter on /a, /a/b and /a/b/**
        • include path /a/b/**/*.jsp results in additional deep NODE_REMOVED filter on /a, /a/b and /a/b/**
          Note that this and the above result in the same additional include paths since all this includeAncestorsRemove flag does is include potential ancestors, it doesn't guarantee that there are children matching the given paths (eg it doesn't traverse down)
        • additionally for paths with globs (eg /a/b/**/*.jsp) it adds a deep NODE_REMOVED filter explicitly for that path using the same method as withIncludeSubtreeOnRemove does, but only limited to said path. So in this case you get a NODE_REMOVED for all *.jsp that are deleted in a subtree individually

        Note that unlike 'normal' include and exclude paths, this variant doesn't apply Oak's NamePathMapper on the ancestors of the registers paths.

        Also note that this might disable 'observation prefiltering based on paths' (OAK-4796) on this listener.

        Specified by:
        withIncludeAncestorsRemove in class OakEventFilter
        Returns:
        this filter with the filter change applied
      • withIncludeSubtreeOnRemove

        public OakEventFilter withIncludeSubtreeOnRemove()
        Description copied from class: OakEventFilter
        This flag causes remove events to be sent for all nodes and properties of an entire subtree (hence use with care!).

        It is only applied when a parent node is actually removed. For a parent node move this is not applied.

        Specified by:
        withIncludeSubtreeOnRemove in class OakEventFilter
        Returns:
        this filter with the filter change applied
      • withIncludeGlobPaths

        public OakEventFilter withIncludeGlobPaths​(java.lang.String... globPaths)
        Description copied from class: OakEventFilter
        Adds the provided glob paths to the set of include paths.

        The definition of a glob path is here

        Note that unlike 'normal' include and exclude paths, this variant doesn't apply Oak's NamePathMapper.

        This filter property is added in 'or' mode.

        Specified by:
        withIncludeGlobPaths in class OakEventFilter
        Parameters:
        globPaths - glob paths that should be added as include path pattern. Note that the NamePathMapper is not applied on these globPaths.
        Returns:
        this filter with the filter change applied
      • getAdditionalIncludeConditions

        public FilterBuilder.Condition getAdditionalIncludeConditions​(java.util.Set<java.lang.String> includePaths)
      • withNodeTypeAggregate

        public OakEventFilter withNodeTypeAggregate​(java.lang.String[] nodeTypes,
                                                    java.lang.String[] relativeGlobPaths)
        Description copied from class: OakEventFilter
        Greedy aggregating filter which upon first (hence greedy) hit of provided nodeTypes checks if the child subtree leading to the actual change matches any of the provided relativeGlobPaths.

        Note that unlike 'normal' include and exclude paths, this variant doesn't apply Oak's NamePathMapper.

        This filter property is added in 'and' mode.

        Specified by:
        withNodeTypeAggregate in class OakEventFilter
        Parameters:
        nodeTypes - note that these nodeTypes are not mapped to oak nor validated
        relativeGlobPaths - glob paths that are added to the set of include paths. To match the node with the desired node type itself, add an empty String ("") as one of the relativeGlobPaths too. Note that Oak's NamePathMapper is not applied to these relativeGlobPaths.
        Returns:
        this filter with the filter change applied