org.opencrx.kernel.depot1.cci2.FxRate Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.depot1.cci2;
/**
* Class {@code FxRate}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:36.222158275Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface FxRate
extends org.opencrx.kernel.generic.cci2.CrxObject{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code currencyBuy}.
* @return The non-null value for attribute {@code currencyBuy}.
*/
public short getCurrencyBuy(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code currencyBuy}.
* @param currencyBuy The non-{@code null} new value for attribute {@code currencyBuy}.
*/
public void setCurrencyBuy(
short currencyBuy
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code currencySell}.
* @return The non-null value for attribute {@code currencySell}.
*/
public short getCurrencySell(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code currencySell}.
* @param currencySell The non-{@code null} new value for attribute {@code currencySell}.
*/
public void setCurrencySell(
short currencySell
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code description}.
* @return The possibly null value for attribute {@code description}.
*/
public java.lang.String getDescription(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code description}.
* @param description The possibly null new value for attribute {@code description}.
*/
public void setDescription(
java.lang.String description
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code fxRateProvider}.
* @return The —possibly {@code null}— value for this reference.
*/
public org.opencrx.kernel.account1.cci2.Account getFxRateProvider(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference {@code fxRateProvider}.
* @param fxRateProvider The new—possibly {@code null}—value for this reference.
*/
public void setFxRateProvider(
org.opencrx.kernel.account1.cci2.Account fxRateProvider
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code fxRateType}.
* @return The non-null value for attribute {@code fxRateType}.
*/
public short getFxRateType(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code fxRateType}.
* @param fxRateType The non-{@code null} new value for attribute {@code fxRateType}.
*/
public void setFxRateType(
short fxRateType
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code name}.
* @return The non-null value for attribute {@code name}.
*/
public java.lang.String getName(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code name}.
* @param name The non-{@code null} new value for attribute {@code name}.
*/
public void setName(
java.lang.String name
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code rate}.
* @return The possibly null value for attribute {@code rate}.
*/
public java.math.BigDecimal getRate(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code rate}.
* @param rate The possibly null new value for attribute {@code rate}.
*/
public void setRate(
java.math.BigDecimal rate
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code transactionSizeFrom}.
* @return The possibly null value for attribute {@code transactionSizeFrom}.
*/
public java.math.BigDecimal getTransactionSizeFrom(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code transactionSizeFrom}.
* @param transactionSizeFrom The possibly null new value for attribute {@code transactionSizeFrom}.
*/
public void setTransactionSizeFrom(
java.math.BigDecimal transactionSizeFrom
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code transactionSizeTo}.
* @return The possibly null value for attribute {@code transactionSizeTo}.
*/
public java.math.BigDecimal getTransactionSizeTo(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code transactionSizeTo}.
* @param transactionSizeTo The possibly null new value for attribute {@code transactionSizeTo}.
*/
public void setTransactionSizeTo(
java.math.BigDecimal transactionSizeTo
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code valueDate}.
* @return The possibly null value for attribute {@code valueDate}.
*/
public java.util.Date getValueDate(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code valueDate}.
* @param valueDate The possibly null new value for attribute {@code valueDate}.
*/
public void setValueDate(
java.util.Date valueDate
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the {@code Segment}'s identity
* @return the parent object's identity
*/
public org.openmdx.base.cci2.Segment.Identity getSegment();
/**
* Tells whether the {@code id} value is persistent or reassignable.
* @return {@code PERSISTENT} or {@code REASSIGNABLE}
*/
public org.oasisopen.cci2.QualifierType getIdType();
/**
* The {@code id} value
* @return the {@code id} value
*/
public java.lang.String getId();
}
}