Class DashboardsConfig
- java.lang.Object
-
- com.priint.pubserver.plannerengine.config.DashboardsConfig
-
- All Implemented Interfaces:
MergableConfig<DashboardsConfig>,java.io.Serializable
public class DashboardsConfig extends java.lang.Object implements MergableConfig<DashboardsConfig>, java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DashboardsConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Chart>getCharts()java.util.List<Dashboard>getDashboards()DashboardsConfigmergeWithCustom(DashboardsConfig customConfig)Merges this configuration with a second (custom) configuration.voidsetCharts(java.util.List<Chart> charts)voidsetDashboards(java.util.List<Dashboard> dashboards)
-
-
-
Method Detail
-
getDashboards
public java.util.List<Dashboard> getDashboards()
-
setDashboards
public void setDashboards(java.util.List<Dashboard> dashboards)
-
getCharts
public java.util.List<Chart> getCharts()
-
setCharts
public void setCharts(java.util.List<Chart> charts)
-
mergeWithCustom
public DashboardsConfig mergeWithCustom(DashboardsConfig customConfig)
Description copied from interface:MergableConfigMerges this configuration with a second (custom) configuration. If settings are defined in the second configuration they will override the settings of the current one.- Specified by:
mergeWithCustomin interfaceMergableConfig<DashboardsConfig>- Returns:
- merged configuration
-
-