microsoft.exchange.webservices.data.ResponseMessage 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="ResponseMessage.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the ResponseMessage.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* The Class ResponseMessage.
*/
public final class ResponseMessage extends ResponseObject {
/***
* Represents the base class for e-mail related responses (Reply, Reply all
* and Forward).
*/
private ResponseMessageType responseType;
/**
* * Initializes a new instance of the class.
*
* @param referenceItem
* the reference item
* @param responseType
* the response type
* @throws Exception
* the exception
*/
ResponseMessage(Item referenceItem, ResponseMessageType responseType)
throws Exception {
super(referenceItem);
this.responseType = responseType;
}
/***
* Internal method to return the schema associated with this type of object.
*
* @return The schema associated with this type of object.
*/
@Override
protected ServiceObjectSchema getSchema() {
return ResponseMessageSchema.Instance;
}
/***
* Gets the minimum required server version.
*
* @return Earliest Exchange version in which this service object type is
* supported.
*/
@Override
protected ExchangeVersion getMinimumRequiredServerVersion() {
return ExchangeVersion.Exchange2007_SP1;
}
/***
* This methods lets subclasses of ServiceObject override the default
* mechanism by which the XML element name associated with their type is
* retrieved.
*
* @return The XML element name associated with this type. If this method
* returns null or empty, the XML element name associated with this
* type is determined by the EwsObjectDefinition attribute that
* decorates the type,if present.
*/
protected String getXmlElementNameOverride() {
if (this.responseType == ResponseMessageType.Reply) {
return XmlElementNames.ReplyToItem;
} else if (this.responseType == ResponseMessageType.ReplyAll) {
return XmlElementNames.ReplyAllToItem;
} else if (this.responseType == ResponseMessageType.Forward) {
return XmlElementNames.ForwardItem;
} else {
EwsUtilities.EwsAssert(false,
"ResponseMessage.GetXmlElementNameOverride",
"An unexpected value for responseType " +
"could not be handled.");
return null; // Because the compiler wants it
}
}
/**
* * Gets a value indicating the type of response this object represents.
*
* @return the response type
*/
public ResponseMessageType getResponseType() {
return this.responseType;
}
/**
* * Gets the body of the response.
*
* @return the body
* @throws Exception
* the exception
*/
public MessageBody getBody() throws Exception {
return (MessageBody)this
.getObjectFromPropertyDefinition(ItemSchema.Body);
}
/**
* Sets the body.
*
* @param value
* the new body
* @throws Exception
* the exception
*/
public void setBody(MessageBody value) throws Exception {
this.getPropertyBag().setObjectFromPropertyDefinition(ItemSchema.Body,
value);
}
/**
* * Gets a list of recipients the response will be sent to.
*
* @return the to recipients
* @throws Exception
* the exception
*/
public EmailAddressCollection getToRecipients() throws Exception {
return (EmailAddressCollection)this
.getObjectFromPropertyDefinition(
EmailMessageSchema.ToRecipients);
}
/**
* * Gets a list of recipients the response will be sent to as Cc.
*
* @return the cc recipients
* @throws Exception
* the exception
*/
public EmailAddressCollection getCcRecipients() throws Exception {
return (EmailAddressCollection)this
.getObjectFromPropertyDefinition(
EmailMessageSchema.CcRecipients);
}
/**
* * Gets a list of recipients the response will be sent to as Cc.
*
* @return the bcc recipients
* @throws Exception
* the exception
*/
public EmailAddressCollection getBccRecipients() throws Exception {
return (EmailAddressCollection)this
.getObjectFromPropertyDefinition(
EmailMessageSchema.BccRecipients);
}
/**
* * Gets the subject of this response.
*
* @return the subject
* @throws Exception
* the exception
*/
public String getSubject() throws Exception {
return (String)this
.getObjectFromPropertyDefinition(EmailMessageSchema.Subject);
}
/**
* Sets the subject.
*
* @param value
* the new subject
* @throws Exception
* the exception
*/
public void setSubject(String value) throws Exception {
this.getPropertyBag().setObjectFromPropertyDefinition(
EmailMessageSchema.Subject, value);
}
/**
* * Gets the body prefix of this response. The body prefix will be
* prepended to the original message's body when the response is created.
*
* @return the body prefix
* @throws Exception
* the exception
*/
public MessageBody getBodyPrefix() throws Exception {
return (MessageBody)this
.getObjectFromPropertyDefinition(
ResponseObjectSchema.BodyPrefix);
}
/**
* Sets the body prefix.
*
* @param value
* the new body prefix
* @throws Exception
* the exception
*/
public void setBodyPrefix(MessageBody value) throws Exception {
this.getPropertyBag().setObjectFromPropertyDefinition(
ResponseObjectSchema.BodyPrefix, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy