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

net.ravendb.client.http.Topology Maven / Gradle / Ivy

package net.ravendb.client.http;

import java.util.List;

public class Topology {

    private Long etag;
    private List nodes;

    public Long getEtag() {
        return etag;
    }

    public void setEtag(Long etag) {
        this.etag = etag;
    }

    public List getNodes() {
        return nodes;
    }

    public void setNodes(List nodes) {
        this.nodes = nodes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy