Class HealthChecksDataProvider
- java.lang.Object
-
- lumis.doui.source.AbstractObjectDataProvider<TabularSource<?>,HealthCheckInfo>
-
- lumis.service.portalmanagement.healthmonitor.HealthChecksDataProvider
-
- All Implemented Interfaces:
IDataProvider<TabularSource<?>>
public class HealthChecksDataProvider extends AbstractObjectDataProvider<TabularSource<?>,HealthCheckInfo>
Returns a list of registered health checks.- Since:
- 10.1.0
- Version:
- $Revision: 19963 $ $Date: 2017-02-21 19:28:29 -0300 (Tue, 21 Feb 2017) $
-
-
Field Summary
-
Fields inherited from interface lumis.doui.source.IDataProvider
INTERFACE_INSTANCE_PROPERTY_FIELDS, INTERFACE_INSTANCE_PROPERTY_FILTERS, INTERFACE_INSTANCE_PROPERTY_MAX_ROWS, INTERFACE_INSTANCE_PROPERTY_ORDER_BY, MAX_NUM_ORDER_BY_FIELDS
-
-
Constructor Summary
Constructors Constructor Description HealthChecksDataProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
loadData(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction)
protected List<HealthCheckInfo>
loadObjects(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction)
Loads the objects.-
Methods inherited from class lumis.doui.source.AbstractObjectDataProvider
getTotalRows, readProperty
-
-
-
-
Method Detail
-
loadData
public void loadData(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction) throws PortalException
- Specified by:
loadData
in interfaceIDataProvider<TabularSource<?>>
- Overrides:
loadData
in classAbstractObjectDataProvider<TabularSource<?>,HealthCheckInfo>
- Throws:
PortalException
-
loadObjects
protected List<HealthCheckInfo> loadObjects(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction) throws PortalException
Description copied from class:AbstractObjectDataProvider
Loads the objects. The properties of the objects returned will be used to populate the source's tabular data.- Specified by:
loadObjects
in classAbstractObjectDataProvider<TabularSource<?>,HealthCheckInfo>
- Parameters:
sessionConfig
- the user session information.source
- the source that will be populated.transaction
- the transaction for persistence access.- Returns:
- a list of objects with the data to populate the source.
- Throws:
PortalException
-
-