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

org.molgenis.vibe.cli.properties.VibeProperties Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.molgenis.vibe.cli.properties;

/**
 * Properties (parsed by {@link VibePropertiesLoader}) stored in {@code application.properties} accessible anywhere in
 * the app (so {@link VibePropertiesLoader} should always be used first to parse the properties).
 */
public enum VibeProperties {
    APP_NAME,
    APP_VERSION;

    private String value;

    public String getValue() {
        return value;
    }

    void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy