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

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

Go to download

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

There is a newer version: 1.1.5.2
Show newest version
/**************************************************************************
 * copyright file="SyncFolderHierarchyResponse.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the SyncFolderHierarchyResponse.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/***
 * Represents the response to a folder synchronization operation.
 */
public final class SyncFolderHierarchyResponse extends
		SyncResponse {

	/**
	 * * Represents the response to a folder synchronization operation.
	 * 
	 * @param propertySet
	 *            the property set
	 */
	protected SyncFolderHierarchyResponse(PropertySet propertySet) {
		super(propertySet);
	}

	/***
	 * Gets the name of the includes last in range XML element.
	 * 
	 * @return XML element name.
	 */
	@Override
	protected String getIncludesLastInRangeXmlElementName() {
		return XmlElementNames.IncludesLastFolderInRange;
	}

	/***
	 * Creates a folder change instance.
	 * 
	 * @return FolderChange instance
	 */
	@Override
	protected FolderChange createChangeInstance() {
		return new FolderChange();
	}

	/**
	 * * Gets a value indicating whether this request returns full or summary
	 * properties.  true if summary properties only; otherwise,
	 * false. 
	 * 
	 * @return the summary properties only
	 */
	@Override
	protected boolean getSummaryPropertiesOnly() {
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy