Interface AbstractEntityManager.SearchRequest
-
- All Known Implementing Classes:
SearchRequestImpl
- Enclosing interface:
- AbstractEntityManager<T,S extends Settings>
public static interface AbstractEntityManager.SearchRequestThe request parameters for performing entity searching on the backend security server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>getConstrainedIdentifiers()Constrained (not available to use) identifiers.intgetPage()The page number for the search cursor.intgetPageSize()The number of items for each page.StringgetSearchPattern()The search pattern string.AbstractEntityManager.SearchRequestsetConstrainedIdentifiers(Set<String> constrainedIdentifiers)Constrained (not available to use) identifiers.
-
-
-
Method Detail
-
getSearchPattern
String getSearchPattern()
The search pattern string.
- Returns:
- The search pattern.
-
getConstrainedIdentifiers
Set<String> getConstrainedIdentifiers()
Constrained (not available to use) identifiers.
-
setConstrainedIdentifiers
AbstractEntityManager.SearchRequest setConstrainedIdentifiers(Set<String> constrainedIdentifiers)
Constrained (not available to use) identifiers.
If you don't want to include some entities in the response, add their identifiers in the collection.
-
getPage
int getPage()
The page number for the search cursor.
IMPORTANT NOTE: Page number starts with value
1.- Returns:
- The page for the returned results.
-
getPageSize
int getPageSize()
The number of items for each page.
- Returns:
- The page size.
-
-