net.finmath.smartcontract.product.xml.TriParty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* The tri-party terms.
*
* Java class for TriParty complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TriParty">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="triPartyAgent" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference"/>
* <element name="collateralProfile" type="{http://www.fpml.org/FpML-5/confirmation}CollateralProfile"/>
* <element name="collateralType" type="{http://www.fpml.org/FpML-5/confirmation}CollateralType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TriParty", propOrder = {
"triPartyAgent",
"collateralProfile",
"collateralType"
})
public class TriParty {
@XmlElement(required = true)
protected PartyReference triPartyAgent;
@XmlElement(required = true)
protected CollateralProfile collateralProfile;
protected CollateralType collateralType;
/**
* Gets the value of the triPartyAgent property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getTriPartyAgent() {
return triPartyAgent;
}
/**
* Sets the value of the triPartyAgent property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setTriPartyAgent(PartyReference value) {
this.triPartyAgent = value;
}
/**
* Gets the value of the collateralProfile property.
*
* @return
* possible object is
* {@link CollateralProfile }
*
*/
public CollateralProfile getCollateralProfile() {
return collateralProfile;
}
/**
* Sets the value of the collateralProfile property.
*
* @param value
* allowed object is
* {@link CollateralProfile }
*
*/
public void setCollateralProfile(CollateralProfile value) {
this.collateralProfile = value;
}
/**
* Gets the value of the collateralType property.
*
* @return
* possible object is
* {@link CollateralType }
*
*/
public CollateralType getCollateralType() {
return collateralType;
}
/**
* Sets the value of the collateralType property.
*
* @param value
* allowed object is
* {@link CollateralType }
*
*/
public void setCollateralType(CollateralType value) {
this.collateralType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy