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

io.pythagoras.common.grayloglogger.config.GraylogProperties Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.pythagoras.common.grayloglogger.config;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties("pythagoras.graylog-logger")
public class GraylogProperties {

    private String host = "localhost";

    private Integer port = 12201;

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public Integer getPort() {
        return port;
    }

    public void setPort(Integer port) {
        this.port = port;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy