public static enum OAuthApplicationRTException.E054211 extends java.lang.Enum<OAuthApplicationRTException.E054211> implements ErrorCode
| Enum Constant and Description | 
|---|
M00
Reserved for unexpected common exceptions. 
 | 
M01
Failed to execute POST request. 
 | 
M02
Failed to execute GET request. 
 | 
M03
Failed to prepare parameters for GET request. 
 | 
M04
Failed to prepare parameters for POST request. 
 | 
M05
Failed to obtain content of a HTTP response. 
 | 
M06
Failed to parse JWT. 
 | 
M07
Failed to validate JWT because of there is an internal processing issue in JWT processor. 
 | 
M08
Failed to parse URL for JWT validation service. 
 | 
M09
Failed to parse JSON value. 
 | 
M10
Failed to serialize map into a JSON value. 
 | 
M11
Failed to encrypt OAuth data. 
 | 
M12
Failed to decrypt OAuth data. 
 | 
M13
Failed to initialize OAuth cipher component. 
 | 
M14
Failed to build URL for redirection to OAuth provider. 
 | 
M15
Failed to authenticate user because OAuth provider does not return "code" parameter. 
 | 
M16
Failed to process OAuth servlet request because it is required an unexpected action. 
 | 
M17
Failed to forward request to client because there is an unexpected action required. 
 | 
M18
Failed to forward error to client from  
cz.ues.platform.security.authn.oauth.servlet.OAuthServlet servlet. | 
M19
Failed to perform forward to client. 
 | 
M20
Failed to determine OAuth provider because there is neither realm specified nor the resource path contains provider name. 
 | 
M21
Failed to prepare OAuth request parameters. 
 | 
M22
Failed to initialize message digest. 
 | 
M23
Invalid configuration. 
 | 
M24
Failed to initialize OAuth authentication. 
 | 
M25
Failed to send redirect for HTTP session initialization. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Class<? extends UESRuntimeException> | 
getExceptionClass()
Returns class of exception which is owner of this error code. 
 | 
static OAuthApplicationRTException.E054211 | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static OAuthApplicationRTException.E054211[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
cz.ues.platform.security.authn.oauth.servlet.OAuthServlet servlet.for (OAuthApplicationRTException.E054211 c : OAuthApplicationRTException.E054211.values()) System.out.println(c);
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullgetExceptionClass in interface ErrorCode