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

com.github.bjuvensjo.rsimulator.http.config.GlobalConfig Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.github.bjuvensjo.rsimulator.http.config;

/**
 * @author Anders Bälter
 */
public class GlobalConfig {
    public static String rootPath;
    public static boolean useRootRelativePath;

    static {
        rootPath = System.getProperty(Constants.ROOT_PATH) != null ? System.getProperty(Constants.ROOT_PATH)
                : Constants.DEFAULT_ROOT_PATH;
        useRootRelativePath = System.getProperty(Constants.USE_ROOT_RELATIVE_PATH) != null ? "true".equals(System
                .getProperty(Constants.USE_ROOT_RELATIVE_PATH)) : false;
    }

    private GlobalConfig() {
        // noop
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy