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

com.datastax.insight.core.dag.EdgeParameter Maven / Gradle / Ivy

package com.datastax.insight.core.dag;

public class EdgeParameter {

    private int output;
    private int input;

    public int getOutput() {
        return output;
    }

    public void setOutput(int output) {
        this.output = output;
    }

    public int getInput() {
        return input;
    }

    public void setInput(int input) {
        this.input = input;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy