All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fpml.fpml_5.confirmation.LoanNotificationRetracted Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A message used to indicate a retraction of a loan notification.
 * 
 * 

Java class for LoanNotificationRetracted complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LoanNotificationRetracted">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}NonCorrectableRequestMessage">
 *       <sequence>
 *         <sequence>
 *           <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanIdentifiers.model"/>
 *           <element name="party" type="{http://www.fpml.org/FpML-5/confirmation}Party"/>
 *         </sequence>
 *         <element name="originalMessage" type="{http://www.fpml.org/FpML-5/confirmation}UnprocessedElementWrapper" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoanNotificationRetracted", propOrder = { "eventIdentifier", "overrideIdentifier", "taskIdentifier", "party", "originalMessage" }) public class LoanNotificationRetracted extends NonCorrectableRequestMessage { protected BusinessEventIdentifier eventIdentifier; protected OverrideIdentifier overrideIdentifier; protected TaskIdentifier taskIdentifier; @XmlElement(required = true) protected Party party; protected UnprocessedElementWrapper originalMessage; /** * 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; } /** * Gets the value of the originalMessage property. * * @return * possible object is * {@link UnprocessedElementWrapper } * */ public UnprocessedElementWrapper getOriginalMessage() { return originalMessage; } /** * Sets the value of the originalMessage property. * * @param value * allowed object is * {@link UnprocessedElementWrapper } * */ public void setOriginalMessage(UnprocessedElementWrapper value) { this.originalMessage = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy