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

io.hawt.springboot.HawtioProperties Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package io.hawt.springboot;

import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/**
 * Configuration properties for hawtio
 */
public class HawtioProperties {

    private Map properties = new HashMap<>();

    public HawtioProperties(final Map properties) {
        this.properties = Objects.requireNonNull(properties);
    }

    public Map get() {
        return properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy