org.fpml.fpml_5.confirmation.CommitmentAdjustment 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.04.04 at 04:56:21 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* An event defining a future change in facility commitment.
*
* Java class for CommitmentAdjustment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CommitmentAdjustment">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractFacilityEvent">
* <sequence>
* <sequence>
* <element name="refusalAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="scheduled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="pik" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* <sequence>
* <element name="facilityCommitment" type="{http://www.fpml.org/FpML-5/confirmation}FacilityCommitment"/>
* <element name="adjustment" type="{http://www.fpml.org/FpML-5/confirmation}Adjustment"/>
* </sequence>
* <element name="commitmentSchedule" type="{http://www.fpml.org/FpML-5/confirmation}CommitmentSchedule" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CommitmentAdjustment", propOrder = {
"refusalAllowed",
"scheduled",
"pik",
"facilityCommitment",
"adjustment",
"commitmentSchedule"
})
public class CommitmentAdjustment
extends AbstractFacilityEvent
{
protected boolean refusalAllowed;
protected boolean scheduled;
protected boolean pik;
@XmlElement(required = true)
protected FacilityCommitment facilityCommitment;
@XmlElement(required = true)
protected Adjustment adjustment;
protected CommitmentSchedule commitmentSchedule;
/**
* Gets the value of the refusalAllowed property.
*
*/
public boolean isRefusalAllowed() {
return refusalAllowed;
}
/**
* Sets the value of the refusalAllowed property.
*
*/
public void setRefusalAllowed(boolean value) {
this.refusalAllowed = value;
}
/**
* Gets the value of the scheduled property.
*
*/
public boolean isScheduled() {
return scheduled;
}
/**
* Sets the value of the scheduled property.
*
*/
public void setScheduled(boolean value) {
this.scheduled = value;
}
/**
* Gets the value of the pik property.
*
*/
public boolean isPik() {
return pik;
}
/**
* Sets the value of the pik property.
*
*/
public void setPik(boolean value) {
this.pik = value;
}
/**
* Gets the value of the facilityCommitment property.
*
* @return
* possible object is
* {@link FacilityCommitment }
*
*/
public FacilityCommitment getFacilityCommitment() {
return facilityCommitment;
}
/**
* Sets the value of the facilityCommitment property.
*
* @param value
* allowed object is
* {@link FacilityCommitment }
*
*/
public void setFacilityCommitment(FacilityCommitment value) {
this.facilityCommitment = value;
}
/**
* Gets the value of the adjustment property.
*
* @return
* possible object is
* {@link Adjustment }
*
*/
public Adjustment getAdjustment() {
return adjustment;
}
/**
* Sets the value of the adjustment property.
*
* @param value
* allowed object is
* {@link Adjustment }
*
*/
public void setAdjustment(Adjustment value) {
this.adjustment = value;
}
/**
* Gets the value of the commitmentSchedule property.
*
* @return
* possible object is
* {@link CommitmentSchedule }
*
*/
public CommitmentSchedule getCommitmentSchedule() {
return commitmentSchedule;
}
/**
* Sets the value of the commitmentSchedule property.
*
* @param value
* allowed object is
* {@link CommitmentSchedule }
*
*/
public void setCommitmentSchedule(CommitmentSchedule value) {
this.commitmentSchedule = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy