net.finmath.smartcontract.product.xml.ConfirmationStatus Maven / Gradle / Ivy
Show all versions of finmath-smart-derivative-contract Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Message for sending matching results. Response message that returns the
* status of an event that have been submitted for matching.
*
*
* Java class for ConfirmationStatus complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConfirmationStatus">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}ResponseMessage">
* <sequence>
* <element name="status" type="{http://www.fpml.org/FpML-5/confirmation}EventStatus"/>
* <choice>
* <sequence>
* <element name="assertedEvent" type="{http://www.fpml.org/FpML-5/confirmation}EventsChoice"/>
* <element name="proposedMatch" type="{http://www.fpml.org/FpML-5/confirmation}EventProposedMatch" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <element name="allegedEvent" type="{http://www.fpml.org/FpML-5/confirmation}EventsChoice"/>
* </choice>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}PartiesAndAccounts.model" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConfirmationStatus", propOrder = {
"status",
"assertedEvent",
"proposedMatch",
"allegedEvent",
"party",
"account"
})
public class ConfirmationStatus
extends ResponseMessage
{
@XmlElement(required = true)
protected EventStatus status;
protected EventsChoice assertedEvent;
protected List proposedMatch;
protected EventsChoice allegedEvent;
protected List party;
protected List account;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link EventStatus }
*
*/
public EventStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link EventStatus }
*
*/
public void setStatus(EventStatus value) {
this.status = value;
}
/**
* Gets the value of the assertedEvent property.
*
* @return
* possible object is
* {@link EventsChoice }
*
*/
public EventsChoice getAssertedEvent() {
return assertedEvent;
}
/**
* Sets the value of the assertedEvent property.
*
* @param value
* allowed object is
* {@link EventsChoice }
*
*/
public void setAssertedEvent(EventsChoice value) {
this.assertedEvent = value;
}
/**
* Gets the value of the proposedMatch 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 Jakarta XML Binding object.
* This is why there is not a set
method for the proposedMatch property.
*
*
* For example, to add a new item, do as follows:
*
* getProposedMatch().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EventProposedMatch }
*
*
*/
public List getProposedMatch() {
if (proposedMatch == null) {
proposedMatch = new ArrayList();
}
return this.proposedMatch;
}
/**
* Gets the value of the allegedEvent property.
*
* @return
* possible object is
* {@link EventsChoice }
*
*/
public EventsChoice getAllegedEvent() {
return allegedEvent;
}
/**
* Sets the value of the allegedEvent property.
*
* @param value
* allowed object is
* {@link EventsChoice }
*
*/
public void setAllegedEvent(EventsChoice value) {
this.allegedEvent = value;
}
/**
* Gets the value of the party 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 Jakarta XML Binding object.
* This is why there is not a set
method for the party property.
*
*
* For example, to add a new item, do as follows:
*
* getParty().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Party }
*
*
*/
public List getParty() {
if (party == null) {
party = new ArrayList();
}
return this.party;
}
/**
* Gets the value of the account 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 Jakarta XML Binding object.
* This is why there is not a set
method for the account property.
*
*
* For example, to add a new item, do as follows:
*
* getAccount().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Account }
*
*
*/
public List getAccount() {
if (account == null) {
account = new ArrayList();
}
return this.account;
}
}