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

cass.rollup.processors.v2.graph.CgEdge Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package cass.rollup.processors.v2.graph;

public class CgEdge {

    private String source;
    private String target;
    private String relation;

    public CgEdge (String source, String target, String relation) {
        this.source = source;
        this.target = target;
        this.relation = relation;
    }

    public String getSource() {return source;}
    public void setSource(String source) {this.source = source;}

    public String getTarget() {return target;}
    public void setTarget(String target) {this.target = target;}

    public String getRelation() {return relation;}
    public void setRelation(String relation) {this.relation = relation;}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy