org.fpml.fpml_5.confirmation.Representations Maven / Gradle / Ivy
//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* A type for defining ISDA 2002 Equity Derivative Representations.
*
* Java class for Representations complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Representations">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="nonReliance" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="agreementsRegardingHedging" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="indexDisclaimer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="additionalAcknowledgements" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Representations", propOrder = {
"nonReliance",
"agreementsRegardingHedging",
"indexDisclaimer",
"additionalAcknowledgements"
})
public class Representations {
protected boolean nonReliance;
protected boolean agreementsRegardingHedging;
protected Boolean indexDisclaimer;
protected boolean additionalAcknowledgements;
/**
* Gets the value of the nonReliance property.
*
*/
public boolean isNonReliance() {
return nonReliance;
}
/**
* Sets the value of the nonReliance property.
*
*/
public void setNonReliance(boolean value) {
this.nonReliance = value;
}
/**
* Gets the value of the agreementsRegardingHedging property.
*
*/
public boolean isAgreementsRegardingHedging() {
return agreementsRegardingHedging;
}
/**
* Sets the value of the agreementsRegardingHedging property.
*
*/
public void setAgreementsRegardingHedging(boolean value) {
this.agreementsRegardingHedging = value;
}
/**
* Gets the value of the indexDisclaimer property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIndexDisclaimer() {
return indexDisclaimer;
}
/**
* Sets the value of the indexDisclaimer property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIndexDisclaimer(Boolean value) {
this.indexDisclaimer = value;
}
/**
* Gets the value of the additionalAcknowledgements property.
*
*/
public boolean isAdditionalAcknowledgements() {
return additionalAcknowledgements;
}
/**
* Sets the value of the additionalAcknowledgements property.
*
*/
public void setAdditionalAcknowledgements(boolean value) {
this.additionalAcknowledgements = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy