Uses of Interface
org.xwiki.notifications.filters.NotificationFilter
-
Packages that use NotificationFilter Package Description org.xwiki.notifications.filters org.xwiki.notifications.filters.script -
-
Uses of NotificationFilter in org.xwiki.notifications.filters
Methods in org.xwiki.notifications.filters that return types with arguments of type NotificationFilter Modifier and Type Method Description Collection<NotificationFilter>
NotificationFilterManager. getAllFilters(boolean allWikis)
Get all notifications filters.Collection<NotificationFilter>
NotificationFilterManager. getAllFilters(DocumentReference user, boolean onlyEnabled)
Get all notifications filters that are enabled to the given user.default Collection<NotificationFilter>
NotificationFilterManager. getAllFilters(DocumentReference user, boolean onlyEnabled, NotificationFilter.FilteringPhase filteringPhase)
Get all notifications filters that are enabled to the given user and matching the requested filtering moment.default Collection<NotificationFilter>
NotificationFilterManager. getAllFilters(WikiReference wikiReference)
Get all notifications filters from the given wikis.Stream<NotificationFilter>
NotificationFilterManager. getEnabledFilters(Collection<NotificationFilter> filters, Map<String,Boolean> filterActivation)
Goes through every givenNotificationFilter
.Stream<NotificationFilter>
NotificationFilterManager. getFiltersRelatedToNotificationPreference(Collection<NotificationFilter> filters, NotificationPreference preference)
Get from the filters the one that match the given notification preference.Stream<NotificationFilter>
NotificationFilterManager. getToggleableFilters(Collection<NotificationFilter> filters)
Get from the given filter the one that are toggleable.Methods in org.xwiki.notifications.filters with parameters of type NotificationFilter Modifier and Type Method Description org.xwiki.rendering.block.Block
NotificationFilterDisplayer. display(NotificationFilter filter, NotificationFilterPreference preference)
Using the givenNotificationFilter
and an associatedNotificationFilterPreference
, display the filter.org.xwiki.rendering.block.Block
NotificationFilterManager. displayFilter(NotificationFilter filter, NotificationFilterPreference preference)
Render aNotificationFilter
using an associatedNotificationFilterPreference
.Stream<NotificationFilterPreference>
NotificationFilterPreferenceManager. getFilterPreferences(Collection<NotificationFilterPreference> filterPreferences, NotificationFilter filter)
Get from the given filter preferences the ones that match the given filter.Stream<NotificationFilterPreference>
NotificationFilterPreferenceManager. getFilterPreferences(Collection<NotificationFilterPreference> filterPreferences, NotificationFilter filter, NotificationFilterType filterType)
Get from the given filter preferences the ones that match the given filter and the given filter type.Stream<NotificationFilterPreference>
NotificationFilterPreferenceManager. getFilterPreferences(Collection<NotificationFilterPreference> filterPreferences, NotificationFilter filter, NotificationFilterType filterType, NotificationFormat format)
Get from the given filter preferences the ones that match the given filter, filter type and format.Method parameters in org.xwiki.notifications.filters with type arguments of type NotificationFilter Modifier and Type Method Description Stream<NotificationFilter>
NotificationFilterManager. getEnabledFilters(Collection<NotificationFilter> filters, Map<String,Boolean> filterActivation)
Goes through every givenNotificationFilter
.Stream<NotificationFilter>
NotificationFilterManager. getFiltersRelatedToNotificationPreference(Collection<NotificationFilter> filters, NotificationPreference preference)
Get from the filters the one that match the given notification preference.Stream<NotificationFilter>
NotificationFilterManager. getToggleableFilters(Collection<NotificationFilter> filters)
Get from the given filter the one that are toggleable. -
Uses of NotificationFilter in org.xwiki.notifications.filters.script
Methods in org.xwiki.notifications.filters.script that return types with arguments of type NotificationFilter Modifier and Type Method Description Collection<NotificationFilter>
NotificationFiltersScriptService. getFilters()
Collection<NotificationFilter>
NotificationFiltersScriptService. getFilters(org.xwiki.user.UserReference userReference)
Set<NotificationFilter>
NotificationFiltersScriptService. getToggleableNotificationFilters()
Get a set of notification filters that can be toggled by the current user.Set<NotificationFilter>
NotificationFiltersScriptService. getToggleableNotificationFilters(org.xwiki.user.UserReference userReference)
Get a set of notification filters that can be toggled by the given user.Collection<NotificationFilter>
NotificationFiltersScriptService. getWikiFilters(WikiReference wikiReference)
Get the filters of the given wiki.Set<NotificationFilter>
NotificationFiltersScriptService. getWikiToggleableNotificationFilters(WikiReference wikiReference)
Get a set of notification filters that can be toggled for the given wiki.Methods in org.xwiki.notifications.filters.script with parameters of type NotificationFilter Modifier and Type Method Description org.xwiki.rendering.block.Block
NotificationFiltersScriptService. displayFilterPreference(NotificationFilter filter, NotificationFilterPreference preference)
Get a displayable form of the givenNotificationFilterPreference
.Set<NotificationFilterPreference>
NotificationFiltersScriptService. getFilterPreferences(NotificationFilter filter)
Get a collection of notification filters preferences that are available for the current user and that corresponds to the given filter.Set<NotificationFilterPreference>
NotificationFiltersScriptService. getFilterPreferences(NotificationFilter filter, org.xwiki.user.UserReference userReference)
Get a collection of notification filters preferences that are available for the given user and that corresponds to the given filter.Set<NotificationFilterPreference>
NotificationFiltersScriptService. getWikiFilterPreferences(NotificationFilter filter, WikiReference wikiReference)
Get a collection of notification filters preferences that are available for the given wiki and that corresponds to the given filter.
-