org.fpml.fpml_5.confirmation.LoanNotificationException 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 message used to indicate an exception issue with a loan notification.
*
* Java class for LoanNotificationException complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoanNotificationException">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}Exception">
* <sequence minOccurs="0">
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanIdentifiers.model"/>
* <element name="party" type="{http://www.fpml.org/FpML-5/confirmation}Party"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanNotificationException", propOrder = {
"eventIdentifier",
"overrideIdentifier",
"taskIdentifier",
"party"
})
public class LoanNotificationException
extends Exception
{
protected BusinessEventIdentifier eventIdentifier;
protected OverrideIdentifier overrideIdentifier;
protected TaskIdentifier taskIdentifier;
protected Party party;
/**
* Gets the value of the eventIdentifier property.
*
* @return
* possible object is
* {@link BusinessEventIdentifier }
*
*/
public BusinessEventIdentifier getEventIdentifier() {
return eventIdentifier;
}
/**
* Sets the value of the eventIdentifier property.
*
* @param value
* allowed object is
* {@link BusinessEventIdentifier }
*
*/
public void setEventIdentifier(BusinessEventIdentifier value) {
this.eventIdentifier = value;
}
/**
* Gets the value of the overrideIdentifier property.
*
* @return
* possible object is
* {@link OverrideIdentifier }
*
*/
public OverrideIdentifier getOverrideIdentifier() {
return overrideIdentifier;
}
/**
* Sets the value of the overrideIdentifier property.
*
* @param value
* allowed object is
* {@link OverrideIdentifier }
*
*/
public void setOverrideIdentifier(OverrideIdentifier value) {
this.overrideIdentifier = value;
}
/**
* Gets the value of the taskIdentifier property.
*
* @return
* possible object is
* {@link TaskIdentifier }
*
*/
public TaskIdentifier getTaskIdentifier() {
return taskIdentifier;
}
/**
* Sets the value of the taskIdentifier property.
*
* @param value
* allowed object is
* {@link TaskIdentifier }
*
*/
public void setTaskIdentifier(TaskIdentifier value) {
this.taskIdentifier = value;
}
/**
* Gets the value of the party property.
*
* @return
* possible object is
* {@link Party }
*
*/
public Party getParty() {
return party;
}
/**
* Sets the value of the party property.
*
* @param value
* allowed object is
* {@link Party }
*
*/
public void setParty(Party value) {
this.party = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy