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

microsoft.exchange.webservices.data.GetItemRequest Maven / Gradle / Ivy

/**************************************************************************
 * copyright file="GetItemRequest.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the GetItemRequest.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/***
 * Represents an abstract GetItem request.
 */
final class GetItemRequest extends GetItemRequestBase {

	/**
	 * * Initializes a new instance of the class.
	 * 
	 * @param service
	 *            the service
	 * @param errorHandlingMode
	 *            the error handling mode
	 * @throws Exception 
	 */
	protected GetItemRequest(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
	 */
	protected GetItemResponse createServiceResponse(ExchangeService service,
			int responseIndex) {
		return new GetItemResponse(this.getItemIds().getItemIdWrapperList(
				responseIndex), this.getPropertySet());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy