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

org.opencds.cqf.Operation Maven / Gradle / Ivy

package org.opencds.cqf;

import java.nio.file.Paths;

public abstract class Operation {

    private String outputPath = Paths.get("src/main/resources/org.opencds.cqf.qdm.output").toAbsolutePath().toString();
    protected String getOutputPath() {
        return outputPath;
    }
    protected void setOutputPath(String outputPath) {
        this.outputPath = Paths.get(outputPath).toAbsolutePath().toString();
    }

    public abstract void execute(String[] args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy