Package pro.taskana.monitor.rest.models
Class ReportRepresentationModel
- java.lang.Object
-
- org.springframework.hateoas.RepresentationModel<ReportRepresentationModel>
-
- pro.taskana.monitor.rest.models.ReportRepresentationModel
-
public class ReportRepresentationModel extends org.springframework.hateoas.RepresentationModel<ReportRepresentationModel>
EntityModel class forReport.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReportRepresentationModel.MetaInformationMeta Information about this ReportResource.static classReportRepresentationModel.RowRepresentationModelEntityModel class forSingleRow.
-
Constructor Summary
Constructors Constructor Description ReportRepresentationModel(ReportRepresentationModel.MetaInformation meta, List<ReportRepresentationModel.RowRepresentationModel> rows, List<ReportRepresentationModel.RowRepresentationModel> sumRow)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReportRepresentationModel.MetaInformationgetMeta()List<ReportRepresentationModel.RowRepresentationModel>getRows()List<ReportRepresentationModel.RowRepresentationModel>getSumRow()
-
-
-
Constructor Detail
-
ReportRepresentationModel
@ConstructorProperties({"meta","rows","sumRow"}) public ReportRepresentationModel(ReportRepresentationModel.MetaInformation meta, List<ReportRepresentationModel.RowRepresentationModel> rows, List<ReportRepresentationModel.RowRepresentationModel> sumRow)
-
-
Method Detail
-
getMeta
public ReportRepresentationModel.MetaInformation getMeta()
-
getRows
public List<ReportRepresentationModel.RowRepresentationModel> getRows()
-
getSumRow
public List<ReportRepresentationModel.RowRepresentationModel> getSumRow()
-
-