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

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

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

import java.util.List;

/**
 * Interface representing an entry in an image archive manifest.
 */
public interface ImageArchiveManifestEntry {
    /**
     * @return the image id for this manifest entry
     */
    String getId();

    /**
     * @return the configuration JSON path for this manifest entry
     */
    String getConfig();

    /**
     * @return the repository tags associated with this manifest entry
     */
    List getRepoTags();

    /**
     * @return the layer archive paths for this manifest entry
     */
    List getLayers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy