public enum AuthInfoType extends Enum<AuthInfoType>
| Enum Constant and Description |
|---|
CERT
Certificate authentication
|
NONE
No authentication is required.
|
SECURITY_TOKEN
Security Token integration
|
UNDEFINED
Auth info undefined or not specified.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getIntType()
Returns the type as an integer which can be consumed by the native layer
|
static AuthInfoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthInfoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthInfoType UNDEFINED
public static final AuthInfoType CERT
public static final AuthInfoType SECURITY_TOKEN
public static final AuthInfoType NONE
public static AuthInfoType[] values()
for (AuthInfoType c : AuthInfoType.values()) System.out.println(c);
public static AuthInfoType 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 nullpublic int getIntType()
Copyright © 2019. All rights reserved.