microsoft.exchange.webservices.data.PostReplySchema 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="PostReplySchema.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the PostReplySchema.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Represents PostReply schema definition.
*
*/
final class PostReplySchema extends ServiceObjectSchema {
// This must be declared after the property definitions
/** The Constant Instance. */
static final PostReplySchema Instance = new PostReplySchema();
/**
* 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(ItemSchema.Subject);
this.registerProperty(ItemSchema.Body);
this.registerProperty(ResponseObjectSchema.ReferenceItemId);
this.registerProperty(ResponseObjectSchema.BodyPrefix);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy