Java Code Examples for microsoft.exchange.webservices.data.core.enumeration.misc.ExchangeVersion#Exchange2010
The following examples show how to use
microsoft.exchange.webservices.data.core.enumeration.misc.ExchangeVersion#Exchange2010 .
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: ContactGroup.java From ews-java-api with MIT License | 5 votes |
/** * Gets the members of the contact group. * * @return the members * @throws Exception the exception */ @RequiredServerVersion(version = ExchangeVersion.Exchange2010) public GroupMemberCollection getMembers() throws Exception { return (GroupMemberCollection) this .getObjectFromPropertyDefinition(ContactGroupSchema.Members); }
Example 2
Source File: AutodiscoverService.java From ews-java-api with MIT License | 2 votes |
/** * Initializes a new instance of the "AutodiscoverService" class. * * @throws ArgumentException on validation error */ public AutodiscoverService() throws ArgumentException { this(ExchangeVersion.Exchange2010); }
Example 3
Source File: GetRoomListsRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 4
Source File: DeleteUserConfigurationRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 5
Source File: GetUserConfigurationRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 6
Source File: GetServerTimeZonesRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the minimum server version required to process this request. * * @return Exchange server version. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 7
Source File: GetPhoneCallRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 8
Source File: GetRoomsRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 9
Source File: CreateUserConfigurationRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 10
Source File: DisconnectPhoneCallRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 11
Source File: UpdateUserConfigurationRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 12
Source File: PlayOnPhoneRequest.java From ews-java-api with MIT License | 2 votes |
/** * Gets the request version. * * @return Earliest Exchange version in which this request is supported. */ @Override protected ExchangeVersion getMinimumRequiredServerVersion() { return ExchangeVersion.Exchange2010; }
Example 13
Source File: ContactGroup.java From ews-java-api with MIT License | 2 votes |
/** * Gets the name under which this contact group is filed as. * * @return the file as * @throws Exception the exception */ @RequiredServerVersion(version = ExchangeVersion.Exchange2010) public String getFileAs() throws Exception { return (String) this .getObjectFromPropertyDefinition(ContactSchema.FileAs); }