net.finmath.smartcontract.product.xml.ReferencePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ReferencePair complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReferencePair">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="referenceEntity" type="{http://www.fpml.org/FpML-5/confirmation}LegalEntity"/>
* <choice>
* <element name="referenceObligation" type="{http://www.fpml.org/FpML-5/confirmation}ReferenceObligation"/>
* <element name="noReferenceObligation" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </choice>
* <element name="entityType" type="{http://www.fpml.org/FpML-5/confirmation}EntityType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReferencePair", propOrder = {
"referenceEntity",
"referenceObligation",
"noReferenceObligation",
"entityType"
})
public class ReferencePair {
@XmlElement(required = true)
protected LegalEntity referenceEntity;
protected ReferenceObligation referenceObligation;
protected Boolean noReferenceObligation;
@XmlElement(required = true)
protected EntityType entityType;
/**
* Gets the value of the referenceEntity property.
*
* @return
* possible object is
* {@link LegalEntity }
*
*/
public LegalEntity getReferenceEntity() {
return referenceEntity;
}
/**
* Sets the value of the referenceEntity property.
*
* @param value
* allowed object is
* {@link LegalEntity }
*
*/
public void setReferenceEntity(LegalEntity value) {
this.referenceEntity = value;
}
/**
* Gets the value of the referenceObligation property.
*
* @return
* possible object is
* {@link ReferenceObligation }
*
*/
public ReferenceObligation getReferenceObligation() {
return referenceObligation;
}
/**
* Sets the value of the referenceObligation property.
*
* @param value
* allowed object is
* {@link ReferenceObligation }
*
*/
public void setReferenceObligation(ReferenceObligation value) {
this.referenceObligation = value;
}
/**
* Gets the value of the noReferenceObligation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNoReferenceObligation() {
return noReferenceObligation;
}
/**
* Sets the value of the noReferenceObligation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNoReferenceObligation(Boolean value) {
this.noReferenceObligation = value;
}
/**
* Gets the value of the entityType property.
*
* @return
* possible object is
* {@link EntityType }
*
*/
public EntityType getEntityType() {
return entityType;
}
/**
* Sets the value of the entityType property.
*
* @param value
* allowed object is
* {@link EntityType }
*
*/
public void setEntityType(EntityType value) {
this.entityType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy