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

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

The newest version!
package io.hawt.springboot;

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

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

    private final Map properties;

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

    public Map get() {
        return properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy