Interface ShowReportOperation
public interface ShowReportOperation
Configurable operation providing means to open and refresh a plugin based report.
- Since:
- 5.2.28
-
Field Summary
Modifier and TypeFieldDescriptionstatic final OperationType<ShowReportOperation>
Operation providing means to open and refresh a plugin based report. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Opens and refreshes the specified report plugin based on the configuration of this operation.<T> void
setParameter
(@NotNull Parameter<T> parameter, T value) Specifies a filter parameter value of the target report plugin.
-
Field Details
-
TYPE
Operation providing means to open and refresh a plugin based report.- Since:
- 5.2.28
-
-
Method Details
-
setParameter
Specifies a filter parameter value of the target report plugin. The specified filter parameter will be set before the report refresh inperform(Class)
.- Type Parameters:
T
- The parameter value type.- Parameters:
parameter
- The parameter that should be modified.value
- The value that should be used.- Since:
- 5.2.28
-
perform
Opens and refreshes the specified report plugin based on the configuration of this operation. The plugin type can be either aDataAccessPlugin
or aReportPlugin
.- Parameters:
pluginType
- The type of the target report plugin.- Since:
- 5.2.28
-