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

io.github.tontu89.debugserverlib.config.RemoteDebugServerConfig Maven / Gradle / Ivy

There is a newer version: 0.0.31
Show newest version
package io.github.tontu89.debugserverlib.config;

import lombok.Data;
import lombok.ToString;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

@Configuration()
@ConfigurationProperties("debug-server")
@PropertySource(value = "classpath:application.yaml", factory = YamlPropertySourceFactory.class)
@Data
@ToString
public class RemoteDebugServerConfig {
    private int port;
    private int numberOfThreadPerClient;
    private int heartBeatIntervalMs;
    private int heartBeatTimeoutMs;
    private boolean enableHeartBeat;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy