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

org.visallo.web.clientapi.model.ClientApiVertexEdges Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.visallo.web.clientapi.model;

import java.util.ArrayList;
import java.util.List;

public class ClientApiVertexEdges implements ClientApiObject {
    private long totalReferences;
    private List relationships = new ArrayList();

    public long getTotalReferences() {
        return totalReferences;
    }

    public void setTotalReferences(long totalReferences) {
        this.totalReferences = totalReferences;
    }

    public List getRelationships() {
        return relationships;
    }

    public static class Edge {
        private ClientApiEdge relationship;
        private ClientApiVertex vertex;

        public ClientApiEdge getRelationship() {
            return relationship;
        }

        public void setRelationship(ClientApiEdge relationship) {
            this.relationship = relationship;
        }

        public ClientApiVertex getVertex() {
            return vertex;
        }

        public void setVertex(ClientApiVertex vertex) {
            this.vertex = vertex;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy