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

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

/***
 * Represents the abstraction of an item Id.
 */
abstract class AbstractItemIdWrapper {

	/**
	 * * Initializes a new instance of the class.
	 */
	protected AbstractItemIdWrapper() {
	}

	/***
	 *Obtains the ItemBase object associated with the wrapper.
	 * 
	 * @return The ItemBase object associated with the wrapper
	 */
	public Item getItem() {
		return null;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy