Class JobRunrConfiguration.DashboardConfiguration
- java.lang.Object
-
- org.jobrunr.quarkus.autoconfigure.JobRunrConfiguration.DashboardConfiguration
-
- Enclosing class:
- JobRunrConfiguration
public static class JobRunrConfiguration.DashboardConfiguration extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description booleanenabledEnables the JobRunr dashboard.java.util.Optional<java.lang.String>passwordThe password for the basic authentication which protects the dashboard.java.util.Optional<java.lang.Integer>portThe port on which the Dashboard should runjava.util.Optional<java.lang.String>usernameThe username for the basic authentication which protects the dashboard
-
Constructor Summary
Constructors Constructor Description DashboardConfiguration()
-
-
-
Field Detail
-
enabled
@ConfigItem(defaultValue="false") public boolean enabled
Enables the JobRunr dashboard.
-
port
@ConfigItem public java.util.Optional<java.lang.Integer> port
The port on which the Dashboard should run
-
username
@ConfigItem public java.util.Optional<java.lang.String> username
The username for the basic authentication which protects the dashboard
-
password
@ConfigItem public java.util.Optional<java.lang.String> password
The password for the basic authentication which protects the dashboard. WARNING: this is insecure as it is in clear text
-
-