AuthenticationError.java

14 lines | 467 B Blame History Raw Download
package org.keycloak.adapters.spi;

/**
 * Common marker interface used by keycloak client adapters when there is an error.  For servlets, you'll be able
 * to extract this error from the HttpServletRequest.getAttribute(AuthenticationError.class.getName()).  Each protocol
 * will have their own subclass of this interface.
 *
 *
 * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
 * @version $Revision: 1 $
 */
public interface AuthenticationError {
}