microsoft.exchange.webservices.data.SearchFolderSchema 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="SearchFolderSchema.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the SearchFolderSchema.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
import java.util.EnumSet;
/**
* The Class SearchFolderSchema.
*/
@Schema
public class SearchFolderSchema extends FolderSchema {
/**
* Field URIs for search folders.
*
*/
private static interface FieldUris {
/** The Search parameters. */
String SearchParameters = "folder:SearchParameters";
}
/**
* Defines the SearchParameters property.
*/
public static final PropertyDefinition SearchParameters =
new ComplexPropertyDefinition(
SearchFolderParameters.class,
XmlElementNames.SearchParameters,
FieldUris.SearchParameters,
EnumSet.of(PropertyDefinitionFlags.CanSet,
PropertyDefinitionFlags.CanUpdate,
PropertyDefinitionFlags.AutoInstantiateOnRead),
ExchangeVersion.Exchange2007_SP1,
new ICreateComplexPropertyDelegate
() {
@Override
public SearchFolderParameters createComplexProperty() {
return new SearchFolderParameters();
}
});
// This must be declared after the property definitions
/** The Constant Instance. */
static final SearchFolderSchema Instance = new SearchFolderSchema();
/**
* Registers properties.
*/
// IMPORTANT NOTE: PROPERTIES MUST BE REGISTERED IN SCHEMA ORDER (i.e. the
// same order as they are defined in types.xsd)
@Override
protected void registerProperties() {
super.registerProperties();
this.registerProperty(SearchParameters);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy