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

com.aeontronix.enhancedmule.tools.runtime.RuntimeInstall Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2019
 */

package com.aeontronix.enhancedmule.tools.runtime;

import java.io.File;

/**
 * Contains the logic to download, uncompress and configure a mule runtime
 */
public class RuntimeInstall {
    private String version;
    private File destDir;
    private File archive;

    public RuntimeInstall(String version, File destDir) {
        this.version = version;
        this.destDir = destDir;
    }

    public RuntimeInstall(String version, File destDir, File archive) {
        this.version = version;
        this.destDir = destDir;
        this.archive = archive;
    }

    public void install() {
        if (archive == null) {

        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy