Package com.day.cq.workflow.launcher
Interface WorkflowLauncher
-
public interface WorkflowLauncher
TheWorkflowLauncher
starts workflow depending on:- jcr event
- path (regular expression)
- nodetype
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addConfigEntry(ConfigEntry entry)
Add new launcher configuration entryvoid
editConfigEntry(java.lang.String id, ConfigEntry configEntry)
Edit existing config entryjava.util.List<ConfigEntry>
getConfigEntries()
Get list of all config entriesvoid
removeConfigEntry(java.lang.String id)
Remove launcher config entry
-
-
-
Method Detail
-
addConfigEntry
void addConfigEntry(ConfigEntry entry) throws RepositoryException
Add new launcher configuration entry- Parameters:
entry
- launcher config entry- Throws:
RepositoryException
-
removeConfigEntry
void removeConfigEntry(java.lang.String id) throws RepositoryException
Remove launcher config entry- Parameters:
id
- config entry id- Throws:
RepositoryException
-
getConfigEntries
java.util.List<ConfigEntry> getConfigEntries()
Get list of all config entries- Returns:
- list of all config entries
-
editConfigEntry
void editConfigEntry(java.lang.String id, ConfigEntry configEntry) throws RepositoryException
Edit existing config entry- Parameters:
id
- id if existing config entryconfigEntry
- modified config entry- Throws:
RepositoryException
-
-