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

com.github.thiagogarbazza.domainvalidation.util.PropertieUtil Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package com.github.thiagogarbazza.domainvalidation.util;

import java.util.ResourceBundle;

public class PropertieUtil {

    private static final ResourceBundle APPLICATION_BUNDLE = ResourceBundle.getBundle("domain-validation");

    public static String getValue(String key) {
        return APPLICATION_BUNDLE.getString(key);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy