/** Constructor. */
protected AbstractLoginHandler(){
supportedAuthenticationMethods = new ArrayList<String>();
+ supportsForceAuthentication = false;
+ supportsPassive = false;
}
/** {@inheritDoc} */
}
/**
- * Sets whether this handler supports foreced re-authentication.
+ * Sets whether this handler supports forced re-authentication.
*
- * @param supported whether this handler supports foreced re-authentication
+ * @param supported whether this handler supports forced re-authentication
*/
public void setSupportsForceAuthentication(boolean supported) {
supportsForceAuthentication = supported;