
microsoft.exchange.webservices.data.GetUserSettingsResponseCollection 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="GetUserSettingsResponseCollection.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the GetUserSettingsResponseCollection.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Represents a collection of responses to GetUserSettings.
*/
public final class GetUserSettingsResponseCollection extends
AutodiscoverResponseCollection {
/**
* Initializes a new instance of the AutodiscoverResponseCollection class.
*/
protected GetUserSettingsResponseCollection() {
}
/**
* Create a response instance.
*
* @return GetUserSettingsResponse.
*/
@Override
protected GetUserSettingsResponse createResponseInstance() {
return new GetUserSettingsResponse();
}
/**
* Gets the name of the response collection XML element.
*
* @return Response collection XMl element name.
*/
@Override
protected String getResponseCollectionXmlElementName() {
return XmlElementNames.UserResponses;
}
/**
* Gets the name of the response instance XML element.
*
* @return Response instance XMl element name.
*/
@Override
protected String getResponseInstanceXmlElementName() {
return XmlElementNames.UserResponse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy