Class ReportDetails
- java.lang.Object
-
- com.trivago.cluecumber.engine.rendering.pages.pojos.ReportDetails
-
public class ReportDetails extends Object
Information about the report generation date and Cluecumber version.
-
-
Constructor Summary
Constructors Constructor Description ReportDetails()Constructor setting the generation date.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetChartJson()Return the chart JSON.Map<String,String>getChartUrlLookup()Get the chart URL lookup for linking bars to their respective pages.StringgetDate()Get the generation date of this report.StringgetGeneratorName()Return the Cluecumber name and version.voidsetChartJson(String chartJson)Set the chart JSON to include.voidsetChartUrlLookup(Map<String,String> chartUrlLookup)Set the chart URL lookup for linking bars to their respective pages.
-
-
-
Method Detail
-
getChartJson
public String getChartJson()
Return the chart JSON.- Returns:
- The JSON string.
-
setChartJson
public void setChartJson(String chartJson)
Set the chart JSON to include.- Parameters:
chartJson- The chart JSON.
-
getDate
public String getDate()
Get the generation date of this report.- Returns:
- The date.
-
getGeneratorName
public String getGeneratorName()
Return the Cluecumber name and version.- Returns:
- The Cluecumber name and version string.
-
getChartUrlLookup
public Map<String,String> getChartUrlLookup()
Get the chart URL lookup for linking bars to their respective pages.- Returns:
- The mapping of names to urls.
-
-