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

com.bcgdv.jwt.util.PropUtil Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
/*
 * PropUtil
 */
package com.bcgdv.jwt.util;

/**
 * Get props from the environment or java args.
 */
public class PropUtil {

    /**
     * Fetch value as Java property or environment variable.
     * @param key they key
     * @return value as String
     */
    public static String getEnvOrProperty(String key) {
        String value = System.getProperty(key);
        if (value == null) {
            value = System.getenv(key);
        }
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy