net.finmath.smartcontract.product.xml.MasterAgreement Maven / Gradle / Ivy
//
// 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* An entity for defining the agreement executed between the parties and
* intended to govern all OTC derivatives transactions between those parties.
*
*
* Java class for MasterAgreement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MasterAgreement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="masterAgreementId" type="{http://www.fpml.org/FpML-5/confirmation}MasterAgreementId" maxOccurs="unbounded" minOccurs="0"/>
* <element name="masterAgreementType" type="{http://www.fpml.org/FpML-5/confirmation}MasterAgreementType"/>
* <element name="masterAgreementVersion" type="{http://www.fpml.org/FpML-5/confirmation}MasterAgreementVersion" minOccurs="0"/>
* <element name="masterAgreementDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MasterAgreement", propOrder = {
"masterAgreementId",
"masterAgreementType",
"masterAgreementVersion",
"masterAgreementDate"
})
public class MasterAgreement {
protected List masterAgreementId;
@XmlElement(required = true)
protected MasterAgreementType masterAgreementType;
protected MasterAgreementVersion masterAgreementVersion;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar masterAgreementDate;
/**
* Gets the value of the masterAgreementId 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 masterAgreementId property.
*
*
* For example, to add a new item, do as follows:
*
* getMasterAgreementId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MasterAgreementId }
*
*
*/
public List getMasterAgreementId() {
if (masterAgreementId == null) {
masterAgreementId = new ArrayList();
}
return this.masterAgreementId;
}
/**
* Gets the value of the masterAgreementType property.
*
* @return
* possible object is
* {@link MasterAgreementType }
*
*/
public MasterAgreementType getMasterAgreementType() {
return masterAgreementType;
}
/**
* Sets the value of the masterAgreementType property.
*
* @param value
* allowed object is
* {@link MasterAgreementType }
*
*/
public void setMasterAgreementType(MasterAgreementType value) {
this.masterAgreementType = value;
}
/**
* Gets the value of the masterAgreementVersion property.
*
* @return
* possible object is
* {@link MasterAgreementVersion }
*
*/
public MasterAgreementVersion getMasterAgreementVersion() {
return masterAgreementVersion;
}
/**
* Sets the value of the masterAgreementVersion property.
*
* @param value
* allowed object is
* {@link MasterAgreementVersion }
*
*/
public void setMasterAgreementVersion(MasterAgreementVersion value) {
this.masterAgreementVersion = value;
}
/**
* Gets the value of the masterAgreementDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMasterAgreementDate() {
return masterAgreementDate;
}
/**
* Sets the value of the masterAgreementDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMasterAgreementDate(XMLGregorianCalendar value) {
this.masterAgreementDate = value;
}
}