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

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

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

public class ClientApiEdgeWithVertexData extends ClientApiEdge {
    private ClientApiVertex source;
    private ClientApiVertex target;

    public ClientApiVertex getSource() {
        return source;
    }

    public void setSource(ClientApiVertex source) {
        this.source = source;
    }

    public ClientApiVertex getTarget() {
        return target;
    }

    public void setTarget(ClientApiVertex target) {
        this.target = target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy