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

org.simplericity.jettyconsole.DefaultConfiguration Maven / Gradle / Ivy

There is a newer version: 1.61
Show newest version
package org.simplericity.jettyconsole;

import org.simplericity.jettyconsole.api.Configuration;

/**
 */
public class DefaultConfiguration implements Configuration {
    private boolean headless = false;
    private String contextPath = "/";

    public boolean isHeadless() {
        return headless;
    }

    public void setHeadless(boolean headless) {
        this.headless = headless;
    }

    public String getContextPath() {
        return contextPath;
    }

    public void setContextPath(String contextPath) {
        this.contextPath = contextPath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy