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

io.smallrye.config.DefaultValuesConfigSource Maven / Gradle / Ivy

package io.smallrye.config;

import java.util.Map;

public class DefaultValuesConfigSource extends KeyMapBackedConfigSource {
    private static final long serialVersionUID = -6386021034957868328L;

    public DefaultValuesConfigSource(final KeyMap properties) {
        super("DefaultValuesConfigSource", Integer.MIN_VALUE, properties);
    }

    void registerDefaults(final KeyMap properties) {
        for (Map.Entry> entry : properties.entrySet()) {
            getKeyMapProperties().put(entry.getKey(), entry.getValue());
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy