We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When passing in response time validation skew to OpenSAML, the type should be long, and not Duration
long
Duration
The correct code would be:
validationParams.put( SAML2AssertionValidationParameters.CLOCK_SKEW, this.responseTimeValidationSkew.toMillis() );
The text was updated successfully, but these errors were encountered:
20033ff
OpenSAML expects type long representing millis for response time va…
b6a057a
…lidation skew Fixes spring-projectsgh-7448 spring-projects#7448
fhanik
No branches or pull requests
When passing in response time validation skew to OpenSAML, the type should be
long
, and notDuration
The correct code would be:
The text was updated successfully, but these errors were encountered: