Class AbstractEntityUsageDataProvider
- java.lang.Object
-
- lumis.service.abstraceentityusage.AbstractEntityUsageDataProvider
-
- All Implemented Interfaces:
IDataProvider<TabularSource<?>>
- Direct Known Subclasses:
DocumentUsageDataProvider
,MediaUsageDataProvider
public abstract class AbstractEntityUsageDataProvider extends java.lang.Object implements IDataProvider<TabularSource<?>>
Data provider to Entity Usage interface- Since:
- 17.1.0
-
-
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 AbstractEntityUsageDataProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract java.lang.String
getEntityColumn()
Returns the entity column name.protected abstract java.lang.String
getEntityTable()
Returns the entity table.protected abstract java.lang.String
getEntityUsageTable()
Returns the entity usage table.void
loadData(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction)
-
-
-
Method Detail
-
loadData
public void loadData(SessionConfig sessionConfig, TabularSource<?> source, ITransaction transaction) throws PortalException
- Specified by:
loadData
in interfaceIDataProvider<TabularSource<?>>
- Throws:
PortalException
-
getEntityTable
protected abstract java.lang.String getEntityTable()
Returns the entity table.- Returns:
- the entity table.
- Since:
- 17.1.0
-
getEntityUsageTable
protected abstract java.lang.String getEntityUsageTable()
Returns the entity usage table.- Returns:
- the entity usage table.
- Since:
- 17.1.0
-
getEntityColumn
protected abstract java.lang.String getEntityColumn()
Returns the entity column name.- Returns:
- the entity column name.
- Since:
- 17.1.0
-
-