[SIDP-228] - Improve error reporting in SAML 2 profile handlers when no encryption key is resolveable for the peer entity ID
[SIDP-229] - IdP Metadata changes to KeyDescriptor not fully flushed from IdP cache
[SIDP-230] - sanity check provided credentials
+[SIDP-233] - Typo on operation name - public void setAuthenticationDurection(long duration)
[SIDP-237] - Re-run of install.sh does not create war again
\ No newline at end of file
public long getAuthenticationDuration() {
return authenticationDuration;
}
+
+ /**
+ * Sets the length of time, in milliseconds, after which a user should be re-authenticated.
+ *
+ * @param duration length of time, in milliseconds, after which a user should be re-authenticated
+ */
+ public void setAuthenticationDuration(long duration) {
+ authenticationDuration = duration;
+ }
/**
* Sets the length of time, in milliseconds, after which a user should be re-authenticated.
*
* @param duration length of time, in milliseconds, after which a user should be re-authenticated
+ *
+ * @deprecated use {@link #setAuthenticationDuration(long)}
*/
public void setAuthenticationDurection(long duration) {
authenticationDuration = duration;