org.opencrx.kernel.account1.cci2.RevenueReport Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.account1.cci2;
/**
* Class {@code RevenueReport}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.739664440Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface RevenueReport
extends org.opencrx.kernel.generic.cci2.CrxObject{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code reportNumber}.
* @return The non-null value for attribute {@code reportNumber}.
*/
public short getReportNumber(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code reportNumber}.
* @param reportNumber The non-{@code null} new value for attribute {@code reportNumber}.
*/
public void setReportNumber(
short reportNumber
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code reportedRevenue}.
* @return The non-null value for attribute {@code reportedRevenue}.
*/
public java.math.BigDecimal getReportedRevenue(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code reportedRevenue}.
* @param reportedRevenue The non-{@code null} new value for attribute {@code reportedRevenue}.
*/
public void setReportedRevenue(
java.math.BigDecimal reportedRevenue
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code reportingCurrency}.
* @return The non-null value for attribute {@code reportingCurrency}.
*/
public short getReportingCurrency(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code reportingCurrency}.
* @param reportingCurrency The non-{@code null} new value for attribute {@code reportingCurrency}.
*/
public void setReportingCurrency(
short reportingCurrency
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code reportingQuarter}.
* @return The non-null value for attribute {@code reportingQuarter}.
*/
public short getReportingQuarter(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code reportingQuarter}.
* @param reportingQuarter The non-{@code null} new value for attribute {@code reportingQuarter}.
*/
public void setReportingQuarter(
short reportingQuarter
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code reportingYear}.
* @return The non-null value for attribute {@code reportingYear}.
*/
public short getReportingYear(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code reportingYear}.
* @param reportingYear The non-{@code null} new value for attribute {@code reportingYear}.
*/
public void setReportingYear(
short reportingYear
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the {@code LegalEntity}'s identity
* @return the parent object's identity
*/
public org.opencrx.kernel.account1.cci2.Account.Identity getLegalEntity();
/**
* 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();
}
}