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
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