org.fpml.fpml_5.confirmation.CreditLimit 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* A structure describing a credit limit with applicability constraints.
*
* Java class for CreditLimit complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreditLimit">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}CreditLimitBase">
* <sequence>
* <element name="limitApplicable" type="{http://www.fpml.org/FpML-5/confirmation}LimitApplicable" maxOccurs="unbounded"/>
* <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreditLimit", propOrder = {
"limitApplicable",
"expirationDate"
})
public class CreditLimit
extends CreditLimitBase
{
@XmlElement(required = true)
protected List limitApplicable;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expirationDate;
/**
* Gets the value of the limitApplicable 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 JAXB object.
* This is why there is not a set
method for the limitApplicable property.
*
*
* For example, to add a new item, do as follows:
*
* getLimitApplicable().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LimitApplicable }
*
*
*/
public List getLimitApplicable() {
if (limitApplicable == null) {
limitApplicable = new ArrayList();
}
return this.limitApplicable;
}
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpirationDate(XMLGregorianCalendar value) {
this.expirationDate = value;
}
}