All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lontime.extjobrunr.configuration.DashboardOption Maven / Gradle / Ivy

package com.github.lontime.extjobrunr.configuration;

import lombok.Getter;
import lombok.Setter;

/**
 * DashboardOption.
 * @author lontime
 * @since 1.0
 */
@Getter
@Setter
public class DashboardOption {
    /**
     * The port on which the Dashboard should run
     */
    private Integer port = 8000;

    /**
     * The username for the basic authentication which protects the dashboard
     */
    private String username;

    /**
     * The password for the basic authentication which protects the dashboard. WARNING: this is insecure as it is in clear text
     */
    private String password;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy