Package org.wildfly.security.http.oidc
Class AuthenticationError
- java.lang.Object
-
- org.wildfly.security.http.oidc.AuthenticationError
-
public class AuthenticationError extends Object
Indicates an OIDC related authentication error. For servlets, you'll be able to extract this error from the HttpServletRequest.getAttribute(AuthenticationError.class.getName()).- Author:
- Bill Burke, Farah Juma
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AuthenticationError.Reason
-
Field Summary
Fields Modifier and Type Field Description private String
description
private AuthenticationError.Reason
reason
-
Constructor Summary
Constructors Constructor Description AuthenticationError(AuthenticationError.Reason reason, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
AuthenticationError.Reason
getReason()
String
toString()
-
-
-
Field Detail
-
reason
private AuthenticationError.Reason reason
-
description
private String description
-
-
Constructor Detail
-
AuthenticationError
public AuthenticationError(AuthenticationError.Reason reason, String description)
-
-
Method Detail
-
getReason
public AuthenticationError.Reason getReason()
-
getDescription
public String getDescription()
-
-