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

com.github.sitture.envconfig.EnvConfigKeepassProperties Maven / Gradle / Ivy

Go to download

A simple utility to manage environment configs in Java-based projects by merging *.properties files with environment variables overrides.

There is a newer version: 1.13.1
Show newest version
package com.github.sitture.envconfig;

class EnvConfigKeepassProperties {
    private final String filename;
    private final String masterKey;

    EnvConfigKeepassProperties(final String filename, final String masterKey) {
        this.filename = filename;
        this.masterKey = masterKey;
    }

    String getFilename() {
        return filename;
    }

    String getMasterKey() {
        return masterKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy