Class ReportResultRow

java.lang.Object
com.morpheusdata.model.MorpheusModel
com.morpheusdata.model.ReportResultRow

public class ReportResultRow extends MorpheusModel
Represents a single data entry in a generated report result. This contains a JSON DataMap that should be consistent by section for exporting and display. A section could be something like 'main' or 'header' to represent the category of data. This can be used in the output render template to designate where it is displayed. Display Order is also very important as this sets the order in which the record is output to the final report file.

NOTE: the SECTION_MAIN section is the primary section for data export. it should be your primary section and is therefore the default section.

Since:
0.8.0
See Also:
  • Field Details

  • Constructor Details

    • ReportResultRow

      public ReportResultRow()
  • Method Details

    • getReportResult

      public ReportResult getReportResult()
    • setReportResult

      public void setReportResult(ReportResult reportResult)
    • getSection

      public String getSection()
    • setSection

      public void setSection(String section)
    • getDisplayOrder

      public Long getDisplayOrder()
    • setDisplayOrder

      public void setDisplayOrder(Long displayOrder)
    • getDataMap

      public Map<String,Object> getDataMap()
    • setDataMap

      public void setDataMap(Map<String,Object> dataMap)