io.infinicast.Endpoint2ServerNetSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinicast-client-jdk8 Show documentation
Show all versions of infinicast-client-jdk8 Show documentation
Infinicast SDK to communicate with the cloud.
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;
}
}