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

microsoft.exchange.webservices.data.FolderIdWrapper 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="FolderIdWrapper.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the FolderIdWrapper.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/***
 * Represents a folder Id provided by a FolderId object.
 */
class FolderIdWrapper extends AbstractFolderIdWrapper {

	/**
	 * The FolderId object providing the Id.
	 */
	private FolderId folderId;

	/**
	 * Initializes a new instance of FolderIdWrapper.
	 * 
	 * @param folderId
	 *            the folder id
	 */
	protected FolderIdWrapper(FolderId folderId) {
		EwsUtilities.EwsAssert(folderId != null, "FolderIdWrapper.ctor",
				"folderId is null");
		this.folderId = folderId;
	}

	/**
	 * Writes the Id encapsulated in the wrapper to XML.
	 * 
	 * @param writer
	 *            the writer
	 * @throws Exception
	 *             the exception
	 */
	protected void writeToXml(EwsServiceXmlWriter writer) 
			throws Exception {
		this.folderId.writeToXml(writer);
	}

	/**
	 * Validates folderId against specified version.
	 * 
	 * @param version
	 *            the version
	 * @throws ServiceVersionException
	 *             the service version exception
	 */
	protected void validate(ExchangeVersion version)
			throws ServiceVersionException {
		this.folderId.validate(version);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy