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

org.fpml.fpml_5.confirmation.ResponseMessageHeader Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.05.10 at 03:58:40 PM UTC 
//


package org.fpml.fpml_5.confirmation;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.w3._2000._09.xmldsig_.SignatureType;


/**
 * A type refining the generic message header to make it specific to response messages.
 * 
 * 

Java class for ResponseMessageHeader complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ResponseMessageHeader">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}MessageHeader">
 *       <sequence>
 *         <element name="inReplyTo" type="{http://www.fpml.org/FpML-5/confirmation}MessageId"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}MessageHeader.model"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResponseMessageHeader", propOrder = { "inReplyTo", "sentBy", "sendTo", "copyTo", "creationTimestamp", "expiryTimestamp", "implementationSpecification", "partyMessageInformation", "signature" }) public class ResponseMessageHeader extends MessageHeader { @XmlElement(required = true) protected MessageId inReplyTo; @XmlElement(required = true) protected MessageAddress sentBy; protected List sendTo; protected List copyTo; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar creationTimestamp; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expiryTimestamp; protected ImplementationSpecification implementationSpecification; protected List partyMessageInformation; @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#") protected List signature; /** * Gets the value of the inReplyTo property. * * @return * possible object is * {@link MessageId } * */ public MessageId getInReplyTo() { return inReplyTo; } /** * Sets the value of the inReplyTo property. * * @param value * allowed object is * {@link MessageId } * */ public void setInReplyTo(MessageId value) { this.inReplyTo = value; } /** * Gets the value of the sentBy property. * * @return * possible object is * {@link MessageAddress } * */ public MessageAddress getSentBy() { return sentBy; } /** * Sets the value of the sentBy property. * * @param value * allowed object is * {@link MessageAddress } * */ public void setSentBy(MessageAddress value) { this.sentBy = value; } /** * Gets the value of the sendTo 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 sendTo property. * *

* For example, to add a new item, do as follows: *

     *    getSendTo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MessageAddress } * * */ public List getSendTo() { if (sendTo == null) { sendTo = new ArrayList(); } return this.sendTo; } /** * Gets the value of the copyTo 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 copyTo property. * *

* For example, to add a new item, do as follows: *

     *    getCopyTo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MessageAddress } * * */ public List getCopyTo() { if (copyTo == null) { copyTo = new ArrayList(); } return this.copyTo; } /** * Gets the value of the creationTimestamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationTimestamp() { return creationTimestamp; } /** * Sets the value of the creationTimestamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreationTimestamp(XMLGregorianCalendar value) { this.creationTimestamp = value; } /** * Gets the value of the expiryTimestamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpiryTimestamp() { return expiryTimestamp; } /** * Sets the value of the expiryTimestamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpiryTimestamp(XMLGregorianCalendar value) { this.expiryTimestamp = value; } /** * Gets the value of the implementationSpecification property. * * @return * possible object is * {@link ImplementationSpecification } * */ public ImplementationSpecification getImplementationSpecification() { return implementationSpecification; } /** * Sets the value of the implementationSpecification property. * * @param value * allowed object is * {@link ImplementationSpecification } * */ public void setImplementationSpecification(ImplementationSpecification value) { this.implementationSpecification = value; } /** * Gets the value of the partyMessageInformation 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 partyMessageInformation property. * *

* For example, to add a new item, do as follows: *

     *    getPartyMessageInformation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyMessageInformation } * * */ public List getPartyMessageInformation() { if (partyMessageInformation == null) { partyMessageInformation = new ArrayList(); } return this.partyMessageInformation; } /** * Gets the value of the signature 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 signature property. * *

* For example, to add a new item, do as follows: *

     *    getSignature().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SignatureType } * * */ public List getSignature() { if (signature == null) { signature = new ArrayList(); } return this.signature; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy