Uses of Interface
com.atlassian.crowd.embedded.api.SearchRestriction

Packages that use SearchRestriction
com.atlassian.crowd.cql.parser   
com.atlassian.crowd.cql.parser.antlr   
com.atlassian.crowd.embedded.api   
com.atlassian.crowd.integration.rest.service   
com.atlassian.crowd.integration.rest.util   
com.atlassian.crowd.plugin.rest.util   
com.atlassian.crowd.search.builder   
com.atlassian.crowd.search.hibernate   
com.atlassian.crowd.search.query.entity   
com.atlassian.crowd.search.query.entity.restriction   
com.atlassian.crowd.search.query.membership   
com.atlassian.crowd.service.client   
 

Uses of SearchRestriction in com.atlassian.crowd.cql.parser
 

Methods in com.atlassian.crowd.cql.parser that return SearchRestriction
 SearchRestriction CqlQueryParserImpl.parseQuery(java.lang.String restriction, PropertyTypeService propertyTypeService)
           
 SearchRestriction CqlQueryParser.parseQuery(java.lang.String restriction, PropertyTypeService propertyTypeService)
          Parses a query string and returns a SearchRestriction.
 

Uses of SearchRestriction in com.atlassian.crowd.cql.parser.antlr
 

Methods in com.atlassian.crowd.cql.parser.antlr that return SearchRestriction
 SearchRestriction CqlEval.getRestriction()
           
 SearchRestriction CqlEval.propertyExpression()
           
 SearchRestriction CqlEval.restriction()
           
 

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)
          Returns an AND boolean search restriction where all of the search restrictions have to be satisfied.
static BooleanRestriction Combine.anyOf(SearchRestriction... restrictions)
          Returns an OR boolean search restriction where only one or more of the search restrictions have to be satisfied.
static
<T> EntityQuery<T>
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)
          Returns an AND boolean search restriction where all of the search restrictions have to be satisfied.
static BooleanRestriction Combine.anyOf(java.util.Collection<SearchRestriction> restrictions)
          Returns an OR boolean search restriction where only one or more of the search restrictions have to be satisfied.
 

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.
 



Copyright © 2012 Atlassian. All Rights Reserved.