microsoft.exchange.webservices.data.BasePropertySet 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="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