|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of SearchRestriction in com.atlassian.crowd.embedded.api |
|---|
| Methods in com.atlassian.crowd.embedded.api that return SearchRestriction | |
|---|---|
SearchRestriction |
Query.getSearchRestriction()
Restrictions to apply to the query. |
| Uses of SearchRestriction in com.atlassian.crowd.integration.rest.service |
|---|
| Methods in com.atlassian.crowd.integration.rest.service with parameters of type SearchRestriction | |
|---|---|
java.util.List<java.lang.String> |
RestCrowdClient.searchGroupNames(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
java.util.List<Group> |
RestCrowdClient.searchGroups(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
java.util.List<java.lang.String> |
RestCrowdClient.searchUserNames(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
java.util.List<User> |
RestCrowdClient.searchUsers(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
| Uses of SearchRestriction in com.atlassian.crowd.integration.rest.util |
|---|
| Methods in com.atlassian.crowd.integration.rest.util that return SearchRestriction | |
|---|---|
static SearchRestriction |
SearchRestrictionEntityTranslator.toSearchRestriction(SearchRestrictionEntity searchRestrictionEntity)
Converts from a SearchRestrictionEntity to a SearchRestriction. |
| Methods in com.atlassian.crowd.integration.rest.util with parameters of type SearchRestriction | |
|---|---|
static SearchRestrictionEntity |
SearchRestrictionEntityTranslator.toSearchRestrictionEntity(SearchRestriction searchRestriction)
Converts from a SearchRestriction a SearchRestrictionEntity. |
| Uses of SearchRestriction in com.atlassian.crowd.plugin.rest.util |
|---|
| Methods in com.atlassian.crowd.plugin.rest.util that return SearchRestriction | |
|---|---|
static SearchRestriction |
SearchRestrictionEntityTranslator.toSearchRestriction(SearchRestrictionEntity searchRestrictionEntity)
Converts from a SearchRestrictionEntity to a SearchRestriction. |
| Methods in com.atlassian.crowd.plugin.rest.util with parameters of type SearchRestriction | |
|---|---|
static SearchRestrictionEntity |
SearchRestrictionEntityTranslator.toSearchRestrictionEntity(SearchRestriction searchRestriction)
Converts from a SearchRestriction a SearchRestrictionEntity. |
| Uses of SearchRestriction in com.atlassian.crowd.search.builder |
|---|
| Methods in com.atlassian.crowd.search.builder with parameters of type SearchRestriction | ||
|---|---|---|
static BooleanRestriction |
Combine.allOf(SearchRestriction... restrictions)
|
|
static BooleanRestriction |
Combine.anyOf(SearchRestriction... restrictions)
|
|
static
|
QueryBuilder.queryFor(java.lang.Class<T> returnType,
EntityDescriptor entity,
SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
QueryBuilder.PartialEntityQueryWithRestriction<T> |
QueryBuilder.PartialEntityQuery.with(SearchRestriction restriction)
Example: Restriction.on(UserTermKeys.FIRST_NAME).exactlyMatching("bob")) |
|
| Method parameters in com.atlassian.crowd.search.builder with type arguments of type SearchRestriction | |
|---|---|
static BooleanRestriction |
Combine.allOf(java.util.Collection<SearchRestriction> restrictions)
|
static BooleanRestriction |
Combine.anyOf(java.util.Collection<SearchRestriction> restrictions)
|
| Constructors in com.atlassian.crowd.search.builder with parameters of type SearchRestriction | |
|---|---|
QueryBuilder.PartialEntityQueryWithRestriction(java.lang.Class<T> returnType,
EntityDescriptor entity,
SearchRestriction restriction)
|
|
QueryBuilder.PartialEntityQueryWithStartIndex(java.lang.Class<T> returnType,
EntityDescriptor entity,
SearchRestriction restriction,
int startIndex)
|
|
| Uses of SearchRestriction in com.atlassian.crowd.search.hibernate |
|---|
| Methods in com.atlassian.crowd.search.hibernate with parameters of type SearchRestriction | |
|---|---|
protected void |
HQLQueryTranslater.appendPropertyRestrictionAsHQL(HQLQuery hql,
Entity entityType,
SearchRestriction restriction)
|
| Uses of SearchRestriction in com.atlassian.crowd.search.query.entity |
|---|
| Methods in com.atlassian.crowd.search.query.entity that return SearchRestriction | |
|---|---|
SearchRestriction |
EntityQuery.getSearchRestriction()
|
| Constructors in com.atlassian.crowd.search.query.entity with parameters of type SearchRestriction | |
|---|---|
AliasQuery(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
ApplicationQuery(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
DirectoryQuery(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
EntityQuery(java.lang.Class<T> returnType,
EntityDescriptor entityDescriptor,
SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
GroupQuery(java.lang.Class<T> returnType,
GroupType groupType,
SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
TokenQuery(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
UserQuery(java.lang.Class<T> returnType,
SearchRestriction searchRestriction,
int startIndex,
int maxResults)
|
|
| Uses of SearchRestriction in com.atlassian.crowd.search.query.entity.restriction |
|---|
| Subinterfaces of SearchRestriction in com.atlassian.crowd.search.query.entity.restriction | |
|---|---|
interface |
BooleanRestriction
A boolean search restriction. |
interface |
NullRestriction
Signifies that there are no restrictions. |
interface |
PropertyRestriction<T>
Restriction on a search based on a property of type T. |
| Classes in com.atlassian.crowd.search.query.entity.restriction that implement SearchRestriction | |
|---|---|
class |
BooleanRestrictionImpl
|
class |
NullRestrictionImpl
Implements a a NullRestriction interface. |
class |
TermRestriction<T>
|
| Methods in com.atlassian.crowd.search.query.entity.restriction that return types with arguments of type SearchRestriction | |
|---|---|
java.util.Collection<SearchRestriction> |
BooleanRestrictionImpl.getRestrictions()
|
java.util.Collection<SearchRestriction> |
BooleanRestriction.getRestrictions()
Returns a collection of restrictions. |
| Constructors in com.atlassian.crowd.search.query.entity.restriction with parameters of type SearchRestriction | |
|---|---|
BooleanRestrictionImpl(BooleanRestriction.BooleanLogic booleanLogic,
SearchRestriction... restrictions)
|
|
| Constructor parameters in com.atlassian.crowd.search.query.entity.restriction with type arguments of type SearchRestriction | |
|---|---|
BooleanRestrictionImpl(BooleanRestriction.BooleanLogic booleanLogic,
java.util.Collection<SearchRestriction> restrictions)
|
|
| Uses of SearchRestriction in com.atlassian.crowd.search.query.membership |
|---|
| Methods in com.atlassian.crowd.search.query.membership that return SearchRestriction | |
|---|---|
SearchRestriction |
MembershipQuery.getSearchRestriction()
|
| Uses of SearchRestriction in com.atlassian.crowd.service.client |
|---|
| Methods in com.atlassian.crowd.service.client with parameters of type SearchRestriction | |
|---|---|
java.util.List<java.lang.String> |
CrowdClient.searchGroupNames(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
Searches for group names matching the searchRestriction criteria. |
java.util.List<Group> |
CrowdClient.searchGroups(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
Searches for groups matching the following criteria. |
java.util.List<java.lang.String> |
CrowdClient.searchUserNames(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
Searches for usernames matching the searchRestriction criteria. |
java.util.List<User> |
CrowdClient.searchUsers(SearchRestriction searchRestriction,
int startIndex,
int maxResults)
Searches for users matching the following criteria. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||