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

io.fabric8.maven.docker.model.ImageArchiveManifest Maven / Gradle / Ivy

There is a newer version: 0.45.0
Show newest version
package io.fabric8.maven.docker.model;

import java.util.List;

import com.google.gson.JsonObject;

public interface ImageArchiveManifest {
    /**
     * @return the list of images in the archive.
     */
    List getEntries();

    /**
     * Return the JSON object for the named config
     * @param configName
     * @return
     */
    JsonObject getConfig(String configName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy