microsoft.exchange.webservices.data.DeclineMeetingInvitationMessage 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.
The newest version!
/**************************************************************************
* copyright file="DeclineMeetingInvitationMessage.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the DeclineMeetingInvitationMessage.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Represents a meeting declination message.
*
*
*/
@ServiceObjectDefinition(xmlElementName = XmlElementNames.DeclineItem, returnedByServer = false)
public final class DeclineMeetingInvitationMessage extends
CalendarResponseMessage {
/**
* Initializes a new instance of the DeclineMeetingInvitationMessage class.
*
* @param referenceItem
* the reference item
* @throws Exception
* the exception
*/
protected DeclineMeetingInvitationMessage(Item referenceItem)
throws Exception {
super(referenceItem);
}
/**
* Gets the minimum required server version.
*
* @return Earliest Exchange version in which this service object type is
* supported.
*/
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
return ExchangeVersion.Exchange2007_SP1;
}
}