@Target(value={ANNOTATION_TYPE,METHOD,TYPE})
@Retention(value=RUNTIME)
@Documented
@API(status=EXPERIMENTAL,
since="1.2.3")
public @interface StatisticsReport
There are three usage scenarios:
@StatisticsReport(STANDARD)
to enable the standard reporting.
This is the default anyway.
@StatisticsReport(OFF)
to disable statistics reporting.
@StatisticsReport(format = YourReportFormat.class)
to plug in your own format.
Modifier and Type | Optional Element and Description |
---|---|
java.lang.Class<? extends StatisticsReportFormat> |
format
The format to be used for publishing statistics reports
in the annotated property.
|
StatisticsReport.StatisticsReportMode |
value |
public abstract StatisticsReport.StatisticsReportMode value
public abstract java.lang.Class<? extends StatisticsReportFormat> format