Enum FederatedAuthRequestIssueReason
- java.lang.Object
-
- java.lang.Enum<FederatedAuthRequestIssueReason>
-
- org.openqa.selenium.devtools.v108.audits.model.FederatedAuthRequestIssueReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FederatedAuthRequestIssueReason>
public enum FederatedAuthRequestIssueReason extends java.lang.Enum<FederatedAuthRequestIssueReason>
Represents the failure reason when a federated authentication reason fails. Should be updated alongside RequestIdTokenStatus in third_party/blink/public/mojom/devtools/inspector_issue.mojom to include all cases except for success.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FederatedAuthRequestIssueReason
fromString(java.lang.String s)
java.lang.String
toJson()
java.lang.String
toString()
static FederatedAuthRequestIssueReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FederatedAuthRequestIssueReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHOULDEMBARGO
public static final FederatedAuthRequestIssueReason SHOULDEMBARGO
-
TOOMANYREQUESTS
public static final FederatedAuthRequestIssueReason TOOMANYREQUESTS
-
MANIFESTLISTHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason MANIFESTLISTHTTPNOTFOUND
-
MANIFESTLISTNORESPONSE
public static final FederatedAuthRequestIssueReason MANIFESTLISTNORESPONSE
-
MANIFESTLISTINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason MANIFESTLISTINVALIDRESPONSE
-
MANIFESTNOTINMANIFESTLIST
public static final FederatedAuthRequestIssueReason MANIFESTNOTINMANIFESTLIST
-
MANIFESTLISTTOOBIG
public static final FederatedAuthRequestIssueReason MANIFESTLISTTOOBIG
-
MANIFESTHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason MANIFESTHTTPNOTFOUND
-
MANIFESTNORESPONSE
public static final FederatedAuthRequestIssueReason MANIFESTNORESPONSE
-
MANIFESTINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason MANIFESTINVALIDRESPONSE
-
CLIENTMETADATAHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason CLIENTMETADATAHTTPNOTFOUND
-
CLIENTMETADATANORESPONSE
public static final FederatedAuthRequestIssueReason CLIENTMETADATANORESPONSE
-
CLIENTMETADATAINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason CLIENTMETADATAINVALIDRESPONSE
-
DISABLEDINSETTINGS
public static final FederatedAuthRequestIssueReason DISABLEDINSETTINGS
-
ERRORFETCHINGSIGNIN
public static final FederatedAuthRequestIssueReason ERRORFETCHINGSIGNIN
-
INVALIDSIGNINRESPONSE
public static final FederatedAuthRequestIssueReason INVALIDSIGNINRESPONSE
-
ACCOUNTSHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason ACCOUNTSHTTPNOTFOUND
-
ACCOUNTSNORESPONSE
public static final FederatedAuthRequestIssueReason ACCOUNTSNORESPONSE
-
ACCOUNTSINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason ACCOUNTSINVALIDRESPONSE
-
IDTOKENHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason IDTOKENHTTPNOTFOUND
-
IDTOKENNORESPONSE
public static final FederatedAuthRequestIssueReason IDTOKENNORESPONSE
-
IDTOKENINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason IDTOKENINVALIDRESPONSE
-
IDTOKENINVALIDREQUEST
public static final FederatedAuthRequestIssueReason IDTOKENINVALIDREQUEST
-
ERRORIDTOKEN
public static final FederatedAuthRequestIssueReason ERRORIDTOKEN
-
CANCELED
public static final FederatedAuthRequestIssueReason CANCELED
-
RPPAGENOTVISIBLE
public static final FederatedAuthRequestIssueReason RPPAGENOTVISIBLE
-
-
Method Detail
-
values
public static FederatedAuthRequestIssueReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FederatedAuthRequestIssueReason c : FederatedAuthRequestIssueReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FederatedAuthRequestIssueReason valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromString
public static FederatedAuthRequestIssueReason fromString(java.lang.String s)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<FederatedAuthRequestIssueReason>
-
toJson
public java.lang.String toJson()
-
-