[New] Added getter for underlying ReportPolicy in Report

This commit is contained in:
Robert von Burg 2018-08-16 13:37:11 +02:00
parent 9a79345e9c
commit 0c8f0df318
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ public class Report {
this.reportPolicy.initialize(reportId);
}
public ReportPolicy getReportPolicy() {
return this.reportPolicy;
}
public boolean hasDateRangeSelector() {
return this.reportPolicy.hasDateRangeSelector();
}