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

com.enonic.xp.server.RunMode Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.server;

public enum RunMode
{
    DEV, PROD;

    public static RunMode get()
    {
        return get( System.getProperty( "xp.runMode" ) );
    }

    protected static RunMode get( final String value )
    {
        return DEV.name().equalsIgnoreCase( value ) ? DEV : PROD;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy