public enum HttpAuthenticationType extends Enum<HttpAuthenticationType> implements com.oracle.bedrock.Option
Copyright (c) 2015. All Rights Reserved. Oracle Corporation.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
| Modifier and Type | Method and Description |
|---|---|
static HttpAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpAuthenticationType Basic
public static final HttpAuthenticationType NTLM
public static final HttpAuthenticationType Kerberos
public static HttpAuthenticationType[] values()
for (HttpAuthenticationType c : HttpAuthenticationType.values()) System.out.println(c);
public static HttpAuthenticationType 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 © 2017. All rights reserved.