Interface CredentialsMatcher

All Superinterfaces:
Serializable
All Known Subinterfaces:
CredentialsMatcher.CQL
All Known Implementing Classes:
AllOfMatcher, AnyOfMatcher, BeanPropertyMatcher, ConstantMatcher, IdMatcher, InstanceOfMatcher, NotMatcher, ScopeMatcher, UsernameMatcher

public interface CredentialsMatcher extends Serializable
Something that matches credentials. Best practice is to
Since:
1.5
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    A mix-in interface to allow describing a credentials matcher.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Evaluates the matcher for the specified credentials.
  • Method Details

    • matches

      boolean matches(@NonNull Credentials item)
      Evaluates the matcher for the specified credentials.
      Parameters:
      item - the specified credentials.
      Returns:
      true if and only if the specified credentials match.