Package org.pac4j.core.matching.checker
Interface MatchingChecker
- All Known Implementing Classes:
DefaultMatchingChecker
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The way to check requests matching.
- Since:
- 1.8.1
- Author:
- Jerome Leleu
-
Method Summary
Modifier and TypeMethodDescriptionbooleanmatches(WebContext context, SessionStore sessionStore, String matcherNames, Map<String, Matcher> matchersMap, List<Client> clients) Check if the web context matches.
-
Method Details
-
matches
boolean matches(WebContext context, SessionStore sessionStore, String matcherNames, Map<String, Matcher> matchersMap, List<Client> clients) Check if the web context matches.- Parameters:
context- the web contextsessionStore- the session storematcherNames- the matchersmatchersMap- the map of matchersclients- the clients- Returns:
- whether the web context matches
-