All Downloads are FREE. Search and download functionalities are using the official Maven repository.

microsoft.exchange.webservices.data.GetEventsResponse Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
/**************************************************************************
 * copyright file="GetEventsResponse.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the GetEventsResponse.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/**
 * Represents the response to a subscription event retrieval operation.
 * 
 */
final class GetEventsResponse extends ServiceResponse {

	/** The results. */
	private GetEventsResults results = new GetEventsResults();

	/**
	 * Initializes a new instance.
	 */
	protected GetEventsResponse() {
		super();
	}

	/**
	 * Reads response elements from XML.
	 * 
	 * @param reader
	 *            the reader
	 * @throws Exception
	 *             the exception
	 */
	protected void readElementsFromXml(EwsServiceXmlReader reader)
			throws Exception {
		super.readElementsFromXml(reader);
		this.results.loadFromXml(reader);
	}

	/**
	 * gets the results.
	 * 
	 * @return the results.
	 * 
	 */
	protected GetEventsResults getResults() {
		return results;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy