microsoft.exchange.webservices.data.GetUserOofSettingsResponse 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.
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;
}
}