Class DataSetBase
- java.lang.Object
-
- org.alfresco.module.org_alfresco_module_rm.dataset.DataSetBase
-
-
Constructor Summary
Constructors Constructor Description DataSetBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
Gets the id of the data setString
getLabel()
Gets the label of the data setString
getPath()
Gets the path of the data setvoid
register()
Registers the data set implementation with the data set service.void
setDataSetService(DataSetService dataSetService)
Sets the data set servicevoid
setId(String id)
Sets the id of the data set servicevoid
setLabel(String label)
Sets the label of the data set servicevoid
setPath(String path)
Sets the path of the data set service
-
-
-
Method Detail
-
setDataSetService
public void setDataSetService(DataSetService dataSetService)
Sets the data set service- Parameters:
dataSetService
- the data set service
-
getLabel
public String getLabel()
Description copied from interface:DataSet
Gets the label of the data set- Specified by:
getLabel
in interfaceDataSet
- Returns:
- String the label of the data set
- See Also:
DataSet.getLabel()
-
setLabel
public void setLabel(String label)
Sets the label of the data set service- Parameters:
label
- the label
-
getId
public String getId()
Description copied from interface:DataSet
Gets the id of the data set- Specified by:
getId
in interfaceDataSet
- Returns:
- String the id of the data set
- See Also:
DataSet.getId()
-
setId
public void setId(String id)
Sets the id of the data set service- Parameters:
id
- the id
-
getPath
public String getPath()
Description copied from interface:DataSet
Gets the path of the data set- Specified by:
getPath
in interfaceDataSet
- Returns:
- String the path of the data set
- See Also:
DataSet.getPath()
-
setPath
public void setPath(String path)
Sets the path of the data set service- Parameters:
path
- the path
-
register
public void register()
Registers the data set implementation with the data set service.
-
-