public interface DataSetService
| Modifier and Type | Method and Description |
|---|---|
boolean |
existsDataSet(String dataSetId)
Checks if a data set exists with the given data set id
|
Map<String,DataSet> |
getDataSets()
Gets the details of all available data sets.
|
Map<String,DataSet> |
getDataSets(org.alfresco.service.cmr.repository.NodeRef filePlan,
boolean excludeLoaded)
Gets the details of all available data sets for a file plan depending on
the parameter "excludeLoaded".
|
Map<String,DataSet> |
getLoadedDataSets(org.alfresco.service.cmr.repository.NodeRef filePlan)
Gets the details of all loaded data sets for a specified file plan
|
boolean |
isLoadedDataSet(org.alfresco.service.cmr.repository.NodeRef filePlan,
String dataSetId)
Checks if a data set with the id "dataSetId" has been loaded into the
specified file plan
|
void |
loadDataSet(org.alfresco.service.cmr.repository.NodeRef filePlan,
String dataSetId)
Loads the data set with the specified id into the specified file plan
|
void |
register(DataSet dataSet)
Register a data set implementation with the service
|
void register(DataSet dataSet)
dataSet - the data setMap<String,DataSet> getDataSets()
Map<String,DataSet> getDataSets(org.alfresco.service.cmr.repository.NodeRef filePlan, boolean excludeLoaded)
filePlan - the file plan for which the details should be retrievedexcludeLoaded - if true only data sets will be retrieved which has
not been loadedMap<String,DataSet> getLoadedDataSets(org.alfresco.service.cmr.repository.NodeRef filePlan)
filePlan - the file plan for which the loaded data sets should be
retrievedvoid loadDataSet(org.alfresco.service.cmr.repository.NodeRef filePlan,
String dataSetId)
filePlan - the file plan which the data set will load intodataSetId - the id of the data set which will be importedboolean existsDataSet(String dataSetId)
dataSetId - the id of the data set which will be checkedboolean isLoadedDataSet(org.alfresco.service.cmr.repository.NodeRef filePlan,
String dataSetId)
filePlan - the file plan for which the check should be donedataSetId - the id of the data set which should be checked if it has
been loaded to the file planCopyright © 2005–2018 Alfresco Software. All rights reserved.