io.hawt.springboot.HawtioProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawtio-springboot Show documentation
Show all versions of hawtio-springboot Show documentation
Hawtio :: Spring Boot 2.x starter
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