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

io.infinicast.Endpoint2ServerNetSettings Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package io.infinicast;

public class Endpoint2ServerNetSettings implements IEndpoint2ServerNetSettings {
    ServerAddress address;
    IEndpoint2ServerNetLayerHandler handler;
    @Override
    public ServerAddress getServerAddress() {
        return address;
    }
    public void setServerAddress(ServerAddress address) {
        this.address = address;
    }
    @Override
    public IEndpoint2ServerNetLayerHandler getHandler() {
        return handler;
    }
    public void setHandler(IEndpoint2ServerNetLayerHandler handler) {
        this.handler = handler;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy