Interface JobRunrConfiguration.JobSchedulerConfiguration
-
- Enclosing interface:
- JobRunrConfiguration
@ConfigurationProperties("jobScheduler") public static interface JobRunrConfiguration.JobSchedulerConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.lang.String>getJobDetailsGenerator()Defines the JobDetailsGenerator to use.booleanisEnabled()Enables the scheduling of jobs.
-
-
-
Method Detail
-
isEnabled
@Bindable(defaultValue="true") boolean isEnabled()
Enables the scheduling of jobs.
-
getJobDetailsGenerator
java.util.Optional<java.lang.String> getJobDetailsGenerator()
Defines the JobDetailsGenerator to use. This should be the fully qualified classname of the JobDetailsGenerator, and it should have a default no-argument constructor.
-
-