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

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

/**
 * Represents the response to a group expansion operation.
 */
final class ExpandGroupResponse extends ServiceResponse {

	/**
	 * AD or store group members.
	 */
	private ExpandGroupResults members = new ExpandGroupResults();

	/**
	 * Initializes a new instance of the class.
	 */
	protected ExpandGroupResponse() {
		super();
	}

	/**
	 * Gets a list of the group's members.
	 * 
	 * @return the members
	 */
	public ExpandGroupResults getMembers() {
		return this.members;
	}

	/**
	 * Reads response elements from XML.
	 * 
	 * @param reader
	 *            the reader
	 * @throws Exception
	 *             the exception
	 */
	@Override
	protected void readElementsFromXml(EwsServiceXmlReader reader)
			throws Exception {
		super.readElementsFromXml(reader);
		this.getMembers().loadFromXml(reader);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy