public enum AutodiscoverEndpoints extends Enum<AutodiscoverEndpoints>
Enum Constant and Description |
---|
Legacy
The "legacy" Autodiscover endpoint.
|
None
No endpoints available.
|
Soap
The SOAP endpoint.
|
WsSecurity
The WS-Security endpoint.
|
WSSecuritySymmetricKey
The WS-Security/SymmetricKey endpoint.
|
WSSecurityX509Cert
The WS-Security/X509Cert endpoint.
|
Modifier and Type | Method and Description |
---|---|
static AutodiscoverEndpoints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutodiscoverEndpoints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutodiscoverEndpoints None
public static final AutodiscoverEndpoints Legacy
public static final AutodiscoverEndpoints Soap
public static final AutodiscoverEndpoints WsSecurity
public static final AutodiscoverEndpoints WSSecuritySymmetricKey
public static final AutodiscoverEndpoints WSSecurityX509Cert
public static AutodiscoverEndpoints[] values()
for (AutodiscoverEndpoints c : AutodiscoverEndpoints.values()) System.out.println(c);
public static AutodiscoverEndpoints 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 © 2012–2015 Microsoft. All rights reserved.