
microsoft.exchange.webservices.data.AbstractItemIdWrapper 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="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 - 2025 Weber Informatics LLC | Privacy Policy