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

org.technologybrewery.habushu.PackageDefinition Maven / Gradle / Ivy

Go to download

Leverages Poetry and Pyenv to provide an automated, predictable order of execution of build commands that apply DevOps and configuration management best practices

The newest version!
package org.technologybrewery.habushu;

public class PackageDefinition {
    private String packageName;
    private String operatorAndVersion;

    private boolean active = true;

    public PackageDefinition() {
    }

    public String getPackageName() {
        return packageName;
    }

    public void setPackageName(String packageName) {
        this.packageName = packageName;
    }

    public String getOperatorAndVersion() {
        return operatorAndVersion;
    }

    public void setOperatorAndVersion(String operatorAndVersion) {
        this.operatorAndVersion = operatorAndVersion;
    }

    public boolean isActive() {
        return active;
    }

    public void setActive(boolean active) {
        this.active = active;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy