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 {
    InfinicastServerAddress address;
    IEndpoint2ServerNetLayerHandler handler;

    @Override
    public InfinicastServerAddress getServerAddress() {
        return address;
    }

    public void setServerAddress(InfinicastServerAddress 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