public enum MsalRuntimeResponseStatus extends Enum<MsalRuntimeResponseStatus>
These values must be kept in sync with the values in MSALRuntime, to ensure proper error handling and to create accurate error messages
| Modifier and Type | Method and Description |
|---|---|
static MsalRuntimeResponseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MsalRuntimeResponseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_UNEXPECTED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_RESERVED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_INTERACTIONREQUIRED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_NONETWORK
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_NETWORKTEMPORARILYUNAVAILABLE
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_SERVERTEMPORARILYUNAVAILABLE
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_APICONTRACTVIOLATION
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_USERCANCELED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_APPLICATIONCANCELED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_INCORRECTCONFIGURATION
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_INSUFFICIENTBUFFER
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_AUTHORITYUNTRUSTED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_USERSWITCH
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_ACCOUNTUNUSABLE
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_USERDATAREMOVALREQUIRED
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_KEYNOTFOUND
public static final MsalRuntimeResponseStatus MSALRUNTIME_RESPONSE_STATUS_ACCOUNTNOTFOUND
public static MsalRuntimeResponseStatus[] values()
for (MsalRuntimeResponseStatus c : MsalRuntimeResponseStatus.values()) System.out.println(c);
public static MsalRuntimeResponseStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.