Enum FederatedAuthRequestIssueReason
- java.lang.Object
-
- java.lang.Enum<FederatedAuthRequestIssueReason>
-
- org.openqa.selenium.devtools.v112.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
-
WELLKNOWNHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason WELLKNOWNHTTPNOTFOUND
-
WELLKNOWNNORESPONSE
public static final FederatedAuthRequestIssueReason WELLKNOWNNORESPONSE
-
WELLKNOWNINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason WELLKNOWNINVALIDRESPONSE
-
WELLKNOWNLISTEMPTY
public static final FederatedAuthRequestIssueReason WELLKNOWNLISTEMPTY
-
CONFIGNOTINWELLKNOWN
public static final FederatedAuthRequestIssueReason CONFIGNOTINWELLKNOWN
-
WELLKNOWNTOOBIG
public static final FederatedAuthRequestIssueReason WELLKNOWNTOOBIG
-
CONFIGHTTPNOTFOUND
public static final FederatedAuthRequestIssueReason CONFIGHTTPNOTFOUND
-
CONFIGNORESPONSE
public static final FederatedAuthRequestIssueReason CONFIGNORESPONSE
-
CONFIGINVALIDRESPONSE
public static final FederatedAuthRequestIssueReason CONFIGINVALIDRESPONSE
-
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
-
ACCOUNTSLISTEMPTY
public static final FederatedAuthRequestIssueReason ACCOUNTSLISTEMPTY
-
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()
-
-