microsoft.exchange.webservices.data.TaskStatus 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="TaskStatus.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the TaskStatus.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Defines the execution status of a task.
*/
public enum TaskStatus {
// The execution of the task is not started.
/** The Not started. */
NotStarted,
// The execution of the task is in progress.
/** The In progress. */
InProgress,
// The execution of the task is completed.
/** The Completed. */
Completed,
// The execution of the task is waiting on others.
/** The Waiting on others. */
WaitingOnOthers,
// The execution of the task is deferred.
/** The Deferred. */
Deferred
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy