Java Code Examples for microsoft.exchange.webservices.data.core.enumeration.misc.ExchangeVersion#Exchange2010_SP1

The following examples show how to use microsoft.exchange.webservices.data.core.enumeration.misc.ExchangeVersion#Exchange2010_SP1 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GetPasswordExpirationDateRequest.java    From ews-java-api with MIT License 4 votes vote down vote up
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  // TODO Auto-generated method stub
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 2
Source File: ApplyConversationActionRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return Earliest Exchange version in which this request is supported.
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 3
Source File: UpdateInboxRulesRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return Earliest Exchange version in which this request is supported.
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 4
Source File: EmptyFolderRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return Earliest Exchange version in which this request is supported.
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 5
Source File: GetInboxRulesRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return Earliest Exchange version in which this request is supported.
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 6
Source File: GetStreamingEventsRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return ExchangeVersion
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 7
Source File: FindConversationRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return Earliest Exchange version in which this request is supported.
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 8
Source File: SubscribeToStreamingNotificationsRequest.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the request version.
 *
 * @return ExchangeVersion
 */
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}
 
Example 9
Source File: Conversation.java    From ews-java-api with MIT License 2 votes vote down vote up
/**
 * Gets the minimum required server version.
 *
 * @return Earliest Exchange version in which
 * this service object type is supported.
 */
@Override public ExchangeVersion getMinimumRequiredServerVersion() {
  return ExchangeVersion.Exchange2010_SP1;
}