Class RVDashboardDataSource
- java.lang.Object
-
- com.infragistics.reveal.sdk.api.model.RVDashboardDataSource
-
- Direct Known Subclasses:
RVAnalysisServicesDataSource
,RVAthenaDataSource
,RVBigQueryDataSource
,RVBoxDataSource
,RVCsvDataSource
,RVDropboxDataSource
,RVDynamicsCrmDataSource
,RVExcelDataSource
,RVGoogleAnalyticsDataSource
,RVGoogleDriveDataSource
,RVGoogleSearchConsoleDataSource
,RVHubspotDataSource
,RVInMemoryDataSource
,RVJsonDataSource
,RVLocalFileDataSource
,RVMarketoDataSource
,RVODataDataSource
,RVOneDriveDataSource
,RVQuickBooksDataSource
,RVReportingServicesDataSource
,RVRESTDataSource
,RVS3DataSource
,RVSharePointDataSource
,RVSqlBasedDataSource
,RVWebResourceDataSource
public abstract class RVDashboardDataSource extends Object
The base class representing a data source used in a dashboard, you can seeRVDataSourceItem
for more information about the relationship between data source and data source items.
-
-
Constructor Summary
Constructors Constructor Description RVDashboardDataSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Number
getDefaultRefreshRate()
Default value to use for "Refresh Data" setting for visualizations created using this item, expressed in minutes (e.g.String
getId()
The ID of the data source.String
getSubtitle()
The subtitle of the data source as displayed to users.String
getTitle()
The title of the data source as displayed to users.void
setDefaultRefreshRate(Number v)
Default value to use for "Refresh Data" setting for visualizations created using this item, expressed in minutes (e.g.void
setId(String id)
The ID of the data source.void
setSubtitle(String sub)
The subtitle of the data source as displayed to users.void
setTitle(String title)
The title of the data source as displayed to users.
-
-
-
Method Detail
-
getId
public String getId()
The ID of the data source.- Returns:
-
setId
public void setId(String id)
The ID of the data source.- Parameters:
id
-
-
getTitle
public String getTitle()
The title of the data source as displayed to users.- Returns:
-
setTitle
public void setTitle(String title)
The title of the data source as displayed to users.- Parameters:
title
-
-
getSubtitle
public String getSubtitle()
The subtitle of the data source as displayed to users.- Returns:
-
setSubtitle
public void setSubtitle(String sub)
The subtitle of the data source as displayed to users.- Parameters:
sub
-
-
getDefaultRefreshRate
public Number getDefaultRefreshRate()
Default value to use for "Refresh Data" setting for visualizations created using this item, expressed in minutes (e.g. 1440 = 1 day). A value of N means that whenever the visualization requests data, the engine will return data found in the cache if it's not older than N minutes -this means, if the engine fetched it from the datasource no more than N minutes before-. Set it to override the widget editor default behavior.- Returns:
-
setDefaultRefreshRate
public void setDefaultRefreshRate(Number v)
Default value to use for "Refresh Data" setting for visualizations created using this item, expressed in minutes (e.g. 1440 = 1 day). A value of N means that whenever the visualization requests data, the engine will return data found in the cache if it's not older than N minutes -this means, if the engine fetched it from the datasource no more than N minutes before-. Set it to override the widget editor default behavior.- Parameters:
v
-
-
-