com.joonsang.graylog.sdk.spring.starter.autoconfigure.GraylogApiProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-sdk-spring-boot-starter Show documentation
Show all versions of graylog-sdk-spring-boot-starter Show documentation
Graylog REST API SDK Spring Boot Starter
package com.joonsang.graylog.sdk.spring.starter.autoconfigure;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Graylog API Properties
* @author debugrammer
* @since 1.0.0
*/
@Getter
@Setter
@ConfigurationProperties("graylog.sdk.api")
public class GraylogApiProperties {
private String scheme = "http";
private String host = "127.0.0.1";
private Integer port = 9000;
private String credentials = "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy