microsoft.exchange.webservices.data.GetEventsResults 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="GetEventsResults.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the GetEventsResults.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/***
*Represents a collection of notification events.
*/
public final class GetEventsResults {
/**
* Watermark in event.
*/
private String newWatermark;
/**
* Subscription id.
*/
private String subscriptionId;
/**
* Previous watermark.
*/
private String previousWatermark;
/**
* True if more events available for this subscription.
*/
private boolean moreEventsAvailable;
/**
* Collection of notification events.
*/
private Collection events =
new ArrayList();
/**
* Map XML element name to notification event type. If you add a new
* notification event type, you'll need to add a new entry to the Map here.
*/
private static LazyMember
© 2015 - 2025 Weber Informatics LLC | Privacy Policy