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

microsoft.exchange.webservices.data.TaskStatus 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="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 - 2024 Weber Informatics LLC | Privacy Policy