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

microsoft.exchange.webservices.data.ResponseMessageSchema 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="ResponseMessageSchema.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the ResponseMessageSchema.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/**
 * Represents ResponseMessage schema definition.
 */
class ResponseMessageSchema extends ServiceObjectSchema {

	/** This must be declared after the property definitions. */
	static final ResponseMessageSchema Instance = new ResponseMessageSchema();

	/**
	 * 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(EmailMessageSchema.ToRecipients);
		this.registerProperty(EmailMessageSchema.CcRecipients);
		this.registerProperty(EmailMessageSchema.BccRecipients);
		this.registerProperty(EmailMessageSchema.IsReadReceiptRequested);
		this.registerProperty(EmailMessageSchema.IsDeliveryReceiptRequested);
		this.registerProperty(ResponseObjectSchema.ReferenceItemId);
		this.registerProperty(ResponseObjectSchema.BodyPrefix);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy