AbstractFormAuthenticator.java

16 lines | 339 B Blame History Raw Download
package org.keycloak.authentication;

/**
 * Abstract helper class that Authenticator implementations can leverage
 *
 * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
 * @version $Revision: 1 $
 */
public abstract class AbstractFormAuthenticator implements Authenticator {

    @Override
    public void close() {

    }
}