Package org.xwiki.uiextension
Interface UIExtensionFilter
-
@Role public interface UIExtensionFilter
A UIExtensionFilter provides a way to filter a list ofUIExtension
.- Since:
- 4.3M1
- Version:
- $Id: 81de495a2928dafffa08f1e5b8effcfc0e598317 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<UIExtension>
filter(List<UIExtension> extensions, String... parameters)
Filter a list ofUIExtension
.
-
-
-
Method Detail
-
filter
List<UIExtension> filter(List<UIExtension> extensions, String... parameters)
Filter a list ofUIExtension
. Some filters require information provided by the user of the API, since we don't support Constructor or setter injection we need the "parameter" argument to pass information to the filter.- Parameters:
extensions
- The list ofUIExtension
s to filterparameters
- A list of optional parameters- Returns:
- The filtered list
-
-