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

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

package microsoft.exchange.webservices.data;

/**
 * Represents response to GetUserOofSettings request.
 */
public class GetUserOofSettingsResponse extends ServiceResponse {

	/** The oof settings. */
	private OofSettings oofSettings;

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

	/**
	 * Gets  the OOF settings. The oof settings.
	 * 
	 * @return the oof settings
	 */
	public OofSettings getOofSettings() {
		return this.oofSettings;
	}

	/**
	 * Sets the oof settings.
	 * 
	 * @param value
	 *            the new oof settings
	 */
	protected void setOofSettings(OofSettings value) {
		this.oofSettings = value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy