com.atlassian.crowd.search.builder
Class Restriction

java.lang.Object
  extended by com.atlassian.crowd.search.builder.Restriction

public class Restriction
extends Object

Example usage:

Restriction.on(UserTermKeys.USERNAME).startsWith("rob");

It is a good idea to add a static import to UserTermKeys in your class to make things even more convenient.


Nested Class Summary
static class Restriction.RestrictionWithProperty<T>
           
 
Constructor Summary
Restriction()
           
 
Method Summary
static
<T> Restriction.RestrictionWithProperty<T>
on(Property<T> property)
          Returns an intermediate form of a property restriction.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Restriction

public Restriction()
Method Detail

on

public static <T> Restriction.RestrictionWithProperty<T> on(Property<T> property)
Returns an intermediate form of a property restriction. Restriction.on(UserTermKeys.USERNAME).startsWith("rob");

Parameters:
property - property to restrict on
Returns:
intermediate form of a property restriction


Copyright © 2013 Atlassian. All Rights Reserved.