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

microsoft.exchange.webservices.data.PostReplySchema 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="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 - 2024 Weber Informatics LLC | Privacy Policy