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

org.rx.net.nameserver.NameserverConfig Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.nameserver;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import java.io.Serializable;
import java.util.List;

@Getter
@Setter
@ToString
public class NameserverConfig implements Serializable {
    private static final long serialVersionUID = -333728009047376209L;
    private int dnsPort = 53;
    private int dnsTtl = 60;
    private int registerPort = 854;
    private int syncPort;
    private List replicaEndpoints;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy