Package com.day.cq.workflow.launcher
Interface WorkflowLauncher
-
public interface WorkflowLauncherTheWorkflowLauncherstarts workflow depending on:- jcr event
- path (regular expression)
- nodetype
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddConfigEntry(ConfigEntry entry)Add new launcher configuration entryvoideditConfigEntry(String id, ConfigEntry configEntry)Edit existing config entryList<ConfigEntry>getConfigEntries()Get list of all config entriesvoidremoveConfigEntry(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(String id) throws RepositoryException
Remove launcher config entry- Parameters:
id- config entry id- Throws:
RepositoryException
-
getConfigEntries
List<ConfigEntry> getConfigEntries()
Get list of all config entries- Returns:
- list of all config entries
-
editConfigEntry
void editConfigEntry(String id, ConfigEntry configEntry) throws RepositoryException
Edit existing config entry- Parameters:
id- id if existing config entryconfigEntry- modified config entry- Throws:
RepositoryException
-
-