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

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

/***
 * Represents a GetItem request specialized to return ServiceResponse.
 */
final class GetItemRequestForLoad extends GetItemRequestBase {

	/**
	 * * Initializes a new instance of the class.
	 * 
	 * @param service
	 *            the service
	 * @param errorHandlingMode
	 *            the error handling mode
	 * @throws Exception 
	 */
	protected GetItemRequestForLoad(ExchangeService service,
			ServiceErrorHandling errorHandlingMode)
			throws Exception {
		super(service, errorHandlingMode);
	}

	/**
	 * * Creates the service response.
	 * 
	 * @param service
	 *            the service
	 * @param responseIndex
	 *            the response index
	 * @return Service response.
	 */
	@Override
	protected ServiceResponse createServiceResponse(ExchangeService service,
			int responseIndex) {
		return new GetItemResponse(this.getItemIds().getItemIdWrapperList(
				responseIndex), this.getPropertySet());

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy