Package org.alfresco.repo.configuration
Interface ConfigurableService
-
- All Known Implementing Classes:
ConfigurableServiceImpl
public interface ConfigurableServiceConfigurable service interface- Author:
- Roy Wetherall
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeRefgetConfigurationFolder(NodeRef nodeRef)Get the configuration folder associated with a configuration nodebooleanisConfigurable(NodeRef nodeRef)Indicates whether a node is configurable or notvoidmakeConfigurable(NodeRef nodeRef)Makes a specified node Configurable.
-
-
-
Method Detail
-
isConfigurable
boolean isConfigurable(NodeRef nodeRef)
Indicates whether a node is configurable or not- Parameters:
nodeRef- the node reference- Returns:
- true if the node is configurable, false otherwise
-
makeConfigurable
void makeConfigurable(NodeRef nodeRef)
Makes a specified node Configurable.This will create the cofigurable folder, associate it as a child of the node and apply the configurable aspect to the node.
- Parameters:
nodeRef- the node reference
-
-