Uses of Interface
net.shibboleth.idp.ui.csrf.CSRFToken
-
Packages that use CSRFToken Package Description net.shibboleth.idp.ui.csrf APIs relating to cross-site request forgery mitigations.net.shibboleth.idp.ui.csrf.impl Implementation classes for cross-site request forgery mitigation. -
-
Uses of CSRFToken in net.shibboleth.idp.ui.csrf
Fields in net.shibboleth.idp.ui.csrf with type parameters of type CSRFToken Modifier and Type Field Description private BiPredicate<CSRFToken,String>CSRFTokenManager. csrfTokenValidationPredicatePredicate to validate the CSRF token.Methods in net.shibboleth.idp.ui.csrf that return CSRFToken Modifier and Type Method Description CSRFTokenCSRFTokenManager. generateCSRFToken()Generate aCSRFTokenusing the token generation strategy derived token value.Methods in net.shibboleth.idp.ui.csrf with parameters of type CSRFToken Modifier and Type Method Description booleanCSRFTokenManager. isValidCSRFToken(CSRFToken csrfToken, String requestCsrfToken)Check the CSRF token matches the CSRF token in the request using thecsrfTokenValidationPredicate.booleanCSRFTokenManager.DefaultCSRFTokenValidationPredicate. test(CSRFToken csrfToken, String requestCSRFToken)Method parameters in net.shibboleth.idp.ui.csrf with type arguments of type CSRFToken Modifier and Type Method Description voidCSRFTokenManager. setCsrfTokenValidationPredicate(BiPredicate<CSRFToken,String> tokenValidationPredicate)Set the CSRF token validation predicate. -
Uses of CSRFToken in net.shibboleth.idp.ui.csrf.impl
Classes in net.shibboleth.idp.ui.csrf.impl that implement CSRFToken Modifier and Type Class Description classSimpleCSRFTokenA default, immutable, implementation of aCSRFToken.
-