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

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

/**
 * Represents a collection of responses to GetDomainSettings.
 */
public final class GetDomainSettingsResponseCollection extends
		AutodiscoverResponseCollection {

	/**
	 * Initializes a new instance of the AutodiscoverResponseCollection class.
	 */
	protected GetDomainSettingsResponseCollection() {
	}

	/**
	 * Create a response instance.
	 * 
	 * @return GetDomainSettingsResponse.
	 */
	@Override
	protected GetDomainSettingsResponse createResponseInstance() {
		return new GetDomainSettingsResponse();
	}

	/**
	 * Gets the name of the response collection XML element.
	 * 
	 * @return Response collection XMl element name.
	 */
	@Override
	protected String getResponseCollectionXmlElementName() {
		return XmlElementNames.DomainResponses;
	}

	/**
	 * Gets the name of the response instance XML element.
	 * 
	 * @return Response instance XMl element name.
	 */
	@Override
	protected String getResponseInstanceXmlElementName() {
		return XmlElementNames.DomainResponse;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy