microsoft.exchange.webservices.data.DelegateFolderPermissionLevel 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="DelegateFolderPermissionLevel.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the DelegateFolderPermissionLevel.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Defines a delegate user's permission level on a specific folder.
*/
public enum DelegateFolderPermissionLevel {
// The delegate has no permission.
/** The None. */
None,
// The delegate has Editor permissions.
/** The Editor. */
Editor,
// The delegate has Reviewer permissions.
/** The Reviewer. */
Reviewer,
// The delegate has Author permissions.
/** The Author. */
Author,
// The delegate has custom permissions.
/** The Custom. */
Custom
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy