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

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

/**
 * Defines the result of a call to an EWS method. Values in this enumeration
 * have to be ordered from lowest to highest severity.
 */
public enum ServiceResult {
	// The call was successful
	/** The Success. */
	Success,

	// The call triggered at least one warning
	/** The Warning. */
	Warning,

	// The call triggered at least one error
	/** The Error. */
	Error
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy