
microsoft.exchange.webservices.data.AutodiscoverEndpoints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exchange-ws-api Show documentation
Show all versions of exchange-ws-api Show documentation
The source came from http://archive.msdn.microsoft.com/ewsjavaapi
Support for Maven has been added.
/**************************************************************************
* copyright file="AutodiscoverEndpoints.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the AutodiscoverEndpoints.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Defines the types of Autodiscover endpoints that are available.
*/
enum AutodiscoverEndpoints {
/** No endpoints available. */
None(0),
/** The "legacy" Autodiscover endpoint. */
Legacy(1),
/** The SOAP endpoint. */
Soap(2),
/** The WS-Security endpoint. */
WsSecurity(4);
/** The autodis endpts. */
@SuppressWarnings("unused")
private final int autodisEndpts;
/**
* Instantiates a new autodiscover endpoints.
*
* @param autodisEndpts
* the autodis endpts
*/
AutodiscoverEndpoints(int autodisEndpts) {
this.autodisEndpts = autodisEndpts;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy