Class MessageHeader
Java class for MessageHeader complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MessageHeader"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Bcc" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="Cc" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="Date" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="From" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Subject" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="To" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> <element name="SafeEnvelopeMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Reply-To" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetBcc()
Gets the value of the bcc property.getCc()
Gets the value of the cc property.getDate()
Gets the value of the date property.getFrom()
Gets the value of the from property.Gets the value of the replyTo property.Gets the value of the safeEnvelopeMessage property.Gets the value of the subject property.getTo()
Gets the value of the to property.void
Sets the value of the date property.void
Sets the value of the from property.void
setSafeEnvelopeMessage
(String value) Sets the value of the safeEnvelopeMessage property.void
setSubject
(String value) Sets the value of the subject property.
-
Field Details
-
bcc
-
cc
-
date
-
from
-
subject
-
to
-
safeEnvelopeMessage
-
replyTo
-
-
Constructor Details
-
MessageHeader
public MessageHeader()
-
-
Method Details
-
getBcc
Gets the value of the bcc property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the bcc property.For example, to add a new item, do as follows:
getBcc().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getCc
Gets the value of the cc property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the cc property.For example, to add a new item, do as follows:
getCc().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getDate
Gets the value of the date property.- Returns:
- possible object is
String
-
setDate
Sets the value of the date property.- Parameters:
value
- allowed object isString
-
getFrom
Gets the value of the from property.- Returns:
- possible object is
String
-
setFrom
Sets the value of the from property.- Parameters:
value
- allowed object isString
-
getSubject
Gets the value of the subject property.- Returns:
- possible object is
String
-
setSubject
Sets the value of the subject property.- Parameters:
value
- allowed object isString
-
getTo
Gets the value of the to property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the to property.For example, to add a new item, do as follows:
getTo().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getSafeEnvelopeMessage
Gets the value of the safeEnvelopeMessage property.- Returns:
- possible object is
String
-
setSafeEnvelopeMessage
Sets the value of the safeEnvelopeMessage property.- Parameters:
value
- allowed object isString
-
getReplyTo
Gets the value of the replyTo property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the replyTo property.For example, to add a new item, do as follows:
getReplyTo().add(newItem);
Objects of the following type(s) are allowed in the list
String
-