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

io.snice.networking.examples.echo.EchoClientConfig Maven / Gradle / Ivy

There is a newer version: 0.0.13
Show newest version
package io.snice.networking.examples.echo;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.snice.networking.app.NetworkAppConfig;

public class EchoClientConfig extends NetworkAppConfig {

    @JsonProperty("remoteHost")
    private String echoServerIp;

    @JsonProperty("remoteIp")
    private int echoServerPort;

    public String getEchoServerIp() {
        return echoServerIp;
    }

    public int getEchoServerPort() {
        return echoServerPort;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy