microsoft.exchange.webservices.data.MeetingRequestsDeliveryScope 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="MeetingRequestsDeliveryScope.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the MeetingRequestsDeliveryScope.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Defines how meeting requests are sent to delegates.
*/
public enum MeetingRequestsDeliveryScope {
// Meeting requests are sent to delegates only.
/** The Delegates only. */
DelegatesOnly,
// Meeting requests are sent to delegates and to the owner of the mailbox.
/** The Delegates and me. */
DelegatesAndMe,
// Meeting requests are sent to delegates and informational messages are
// sent to the owner of the mailbox.
/** The Delegates and send information to me. */
DelegatesAndSendInformationToMe,
//Meeting requests are not sent to delegates. This value is
//supported only for Exchange 2010 SP1 or later
//server versions.
@RequiredServerVersion(version = ExchangeVersion.Exchange2010_SP1)
NoForward
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy