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

org.wildfly.glow.OutputContent Maven / Gradle / Ivy

The newest version!
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package org.wildfly.glow;

import java.nio.file.Path;
import java.util.Map;

/**
 *
 * @author jdenise
 */
public class OutputContent {
    public enum OutputFile {
        BOOTABLE_JAR_FILE,
        DOCKER_FILE,
        SERVER_DIR,
        PROVISIONING_XML_FILE,
        CHANNEL_FILE,
        ENV_FILE
    }

    private final Map files;
    private final String dockerImageName;
    OutputContent(Map files, String dockerImageName) {
        this.files = files;
        this.dockerImageName = dockerImageName;
    }

    /**
     * @return the files
     */
    public Map getFiles() {
        return files;
    }

    /**
     * @return the dockerImageName
     */
    public String getDockerImageName() {
        return dockerImageName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy