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

microsoft.exchange.webservices.data.BasePropertySet Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

There is a newer version: 1.1.5.2
Show newest version
/**************************************************************************
 * copyright file="BasePropertySet.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the BasePropertySet.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/***
 * Defines base property sets that are used as the base for custom property
 * sets.
 */
public enum BasePropertySet {

	// Only includes the Id of items and folders.
	/** The Id only. */
	IdOnly("IdOnly"),

	// Includes all the first class properties of items and folders.
	/** The First class properties. */
	FirstClassProperties("AllProperties");

	/** The base shape value. */
	private String baseShapeValue;

	/**
	 * Instantiates a new base property set.
	 * 
	 * @param baseShapeValue
	 *            the base shape value
	 */
	BasePropertySet(String baseShapeValue) {
		this.baseShapeValue = baseShapeValue;
	}

	/**
	 * Gets the base shape value.
	 * 
	 * @return the base shape value
	 */
	public String getBaseShapeValue() {
		return this.baseShapeValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy