io.infinicast.client.impl.contexts.APEndpointContext 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.client.impl.contexts;
import io.infinicast.JObject;
import io.infinicast.client.api.IEndpoint;
import io.infinicast.client.api.paths.IEndpointContext;
public class APEndpointContext implements IEndpointContext {
IEndpoint _endpoint;
JObject _endpointData;
public IEndpoint getEndpoint() {
return this._endpoint;
}
public void setEndpoint(IEndpoint value) {
this._endpoint = value;
}
public JObject getEndpointData() {
return this._endpointData;
}
public void setEndpointData(JObject value) {
this._endpointData = value;
}
}