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

io.infinicast.client.api.EndpointSubscription Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy