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

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

/**
 * Represents a collection of item Ids.
 */
public final class ItemIdCollection extends ComplexPropertyCollection {
	/**
	 * Initializes a new instance of the  class.
	 */
	protected ItemIdCollection() {
		super();
	}

	/**
	 * Creates the complex property.
	 * @param xmlElementName Name of the XML element.
	 * @return ItemId.
	 */
	@Override
	protected ItemId createComplexProperty(String xmlElementName) {
		return new ItemId();
	}

	/**
	 * Gets the name of the collection item XML element.
	 * @param complexProperty The complex property.
	 * @return XML element name.
	 */
	@Override
	protected String getCollectionItemXmlElementName(ItemId complexProperty) {
		return complexProperty.getXmlElementName();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy