AuthenticationMethod Class

public final class AuthenticationMethod
extends ExpandableStringEnum<AuthenticationMethod>

VPN client authentication method.

Field Summary

Modifier and Type Field and Description
static final AuthenticationMethod EAPMSCHAPV2

EAPMSCHAPv2.

static final AuthenticationMethod EAPTLS

EAPTLS.

Constructor Summary

Constructor Description
AuthenticationMethod()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of AuthenticationMethod value.

Method Summary

Modifier and Type Method and Description
static AuthenticationMethod fromString(String name)

Creates or finds a AuthenticationMethod from its string representation.

static Collection<AuthenticationMethod> values()

Gets known AuthenticationMethod values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

EAPMSCHAPV2

public static final AuthenticationMethod EAPMSCHAPV2

EAPMSCHAPv2.

EAPTLS

public static final AuthenticationMethod EAPTLS

EAPTLS.

Constructor Details

AuthenticationMethod

@Deprecated
public AuthenticationMethod()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of AuthenticationMethod value.

Method Details

fromString

public static AuthenticationMethod fromString(String name)

Creates or finds a AuthenticationMethod from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding AuthenticationMethod.

values

public static Collection<AuthenticationMethod> values()

Gets known AuthenticationMethod values.

Returns:

known AuthenticationMethod values.

Applies to