Package org.gnome.webkit
Enum Class AuthenticationScheme
- All Implemented Interfaces:
Enumeration
,Serializable
,Comparable<AuthenticationScheme>
,Constable
@Generated("io.github.jwharm.JavaGI")
public enum AuthenticationScheme
extends Enum<AuthenticationScheme>
implements Enumeration
Enum values representing the authentication scheme.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionClient certificate PIN required for use.Client Certificate Authentication (see RFC 2246).The default authentication scheme of WebKit.HTML Form authentication.Basic authentication scheme as defined in RFC 2617.Digest authentication scheme as defined in RFC 2617.Negotiate (or SPNEGO) authentication scheme as defined in RFC 4559.NTLM Microsoft proprietary authentication scheme.Server Trust Authentication.Authentication scheme unknown. -
Method Summary
Modifier and TypeMethodDescriptionstatic Type
getType()
Get the GType of the AuthenticationScheme classint
getValue()
Get the numeric value of this enumstatic AuthenticationScheme
of
(int value) Create a new AuthenticationScheme for the provided valuestatic AuthenticationScheme
Returns the enum constant of this class with the specified name.static AuthenticationScheme[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
The default authentication scheme of WebKit. -
HTTP_BASIC
Basic authentication scheme as defined in RFC 2617. -
HTTP_DIGEST
Digest authentication scheme as defined in RFC 2617. -
HTML_FORM
HTML Form authentication. -
NTLM
NTLM Microsoft proprietary authentication scheme. -
NEGOTIATE
Negotiate (or SPNEGO) authentication scheme as defined in RFC 4559. -
CLIENT_CERTIFICATE_REQUESTED
Client Certificate Authentication (see RFC 2246). -
SERVER_TRUST_EVALUATION_REQUESTED
Server Trust Authentication. -
CLIENT_CERTIFICATE_PIN_REQUESTED
Client certificate PIN required for use. Since: 2.34 -
UNKNOWN
Authentication scheme unknown.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
of
Create a new AuthenticationScheme for the provided value- Parameters:
value
- the enum value- Returns:
- the enum for the provided value
-
getValue
public int getValue()Get the numeric value of this enum- Specified by:
getValue
in interfaceEnumeration
- Returns:
- the enum value
-
getType
-