Interface MacroTask
-
- All Superinterfaces:
Entity
,SchedTask
,Serializable
,Task<SchedTask>
- All Known Implementing Classes:
JPAMacroTask
public interface MacroTask extends SchedTask
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(FormPropertyDef formPropertyDef)
void
add(MacroTaskCommand macroTaskCommand)
List<? extends MacroTaskCommand>
getCommands()
List<? extends FormPropertyDef>
getFormPropertyDefs()
Implementation
getMacroActions()
Realm
getRealm()
boolean
isContinueOnError()
boolean
isSaveExecs()
void
setContinueOnError(boolean continueOnError)
void
setMacroAction(Implementation macroActions)
void
setRealm(Realm realm)
void
setSaveExecs(boolean saveExecs)
-
Methods inherited from interface org.apache.syncope.core.persistence.api.entity.task.SchedTask
getCronExpression, getDescription, getJobDelegate, getName, getStartAt, isActive, setActive, setCronExpression, setDescription, setJobDelegate, setName, setStartAt
-
-
-
-
Method Detail
-
getRealm
Realm getRealm()
-
setRealm
void setRealm(Realm realm)
-
add
void add(MacroTaskCommand macroTaskCommand)
-
getCommands
List<? extends MacroTaskCommand> getCommands()
-
add
void add(FormPropertyDef formPropertyDef)
-
getFormPropertyDefs
List<? extends FormPropertyDef> getFormPropertyDefs()
-
getMacroActions
Implementation getMacroActions()
-
setMacroAction
void setMacroAction(Implementation macroActions)
-
isContinueOnError
boolean isContinueOnError()
-
setContinueOnError
void setContinueOnError(boolean continueOnError)
-
isSaveExecs
boolean isSaveExecs()
-
setSaveExecs
void setSaveExecs(boolean saveExecs)
-
-