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