Class Restriction

java.lang.Object
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.

  • Constructor Details

    • Restriction

      public Restriction()
  • Method Details

    • 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