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

org.opencb.opencga.test.execution.models.DataSetExecutionCommand Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package org.opencb.opencga.test.execution.models;

public class DataSetExecutionCommand {

    private String commandLine;
    private String image;

    public DataSetExecutionCommand() {
    }

    public String getCommandLine() {
        return commandLine;
    }

    public DataSetExecutionCommand setCommandLine(String commandLine) {
        this.commandLine = commandLine;
        return this;
    }

    public String getImage() {
        return image;
    }

    public DataSetExecutionCommand setImage(String image) {
        this.image = image;
        return this;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy