Interface DataSetIndexRegistry
-
- All Known Implementing Classes:
TransientDataSetIndexRegistry
public interface DataSetIndexRegistryMaintains a registry of data set indexes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSetIndexget(String uuid)Get the index for the specified data set.DataSetIndexput(org.dashbuilder.dataset.DataSet dataSet)Index the given data set.DataSetIndexremove(String uuid)Removes the index for the specified data set.
-
-
-
Method Detail
-
put
DataSetIndex put(org.dashbuilder.dataset.DataSet dataSet)
Index the given data set.
-
get
DataSetIndex get(String uuid)
Get the index for the specified data set.- Parameters:
uuid- The data set unique identifier.
-
remove
DataSetIndex remove(String uuid)
Removes the index for the specified data set.- Parameters:
uuid- The data set unique identifier.- Returns:
- The removed index or null if there was no mapping for uuid.
-
-