Interface OidcTokenMatcher

  • All Superinterfaces:
    java.util.function.Predicate<OidcToken>

    public interface OidcTokenMatcher
    extends java.util.function.Predicate<OidcToken>
    An interface for allowing direct string matching or regular expressions on OidcToken. Use the static factory of(StringMatcher, StringMatcher) to instantiate the matcher. Custom implementations should override Object.toString() for better error reporting.
    • Method Summary

      Static Methods 
      Modifier and Type Method Description
      static OidcTokenMatcher of​(StringMatcher san, StringMatcher issuer)  
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or, test