io.infinicast.client.api.EndpointSubscription 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.api;
import java.util.ArrayList;
public class EndpointSubscription {
String _path;
ArrayList _roles;
public String getPath() {
return this._path;
}
public void setPath(String value) {
this._path = value;
}
public ArrayList getRoles() {
return this._roles;
}
public void setRoles(ArrayList value) {
this._roles = value;
}
}