Package io.fabric8.maven.docker.model
Class ImageArchiveManifestEntryAdapter
- java.lang.Object
-
- io.fabric8.maven.docker.model.ImageArchiveManifestEntryAdapter
-
- All Implemented Interfaces:
ImageArchiveManifestEntry
public class ImageArchiveManifestEntryAdapter extends Object implements ImageArchiveManifestEntry
Adapter to convert from JSON representation to model.
-
-
Constructor Summary
Constructors Constructor Description ImageArchiveManifestEntryAdapter(com.google.gson.JsonObject json)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConfig()StringgetId()List<String>getLayers()List<String>getRepoTags()
-
-
-
Field Detail
-
CONFIG
public static final String CONFIG
- See Also:
- Constant Field Values
-
REPO_TAGS
public static final String REPO_TAGS
- See Also:
- Constant Field Values
-
LAYERS
public static final String LAYERS
- See Also:
- Constant Field Values
-
CONFIG_JSON_SUFFIX
public static final String CONFIG_JSON_SUFFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
getConfig
public String getConfig()
- Specified by:
getConfigin interfaceImageArchiveManifestEntry- Returns:
- the configuration JSON path for this manifest entry
-
getId
public String getId()
- Specified by:
getIdin interfaceImageArchiveManifestEntry- Returns:
- the image id for this manifest entry
-
getRepoTags
public List<String> getRepoTags()
- Specified by:
getRepoTagsin interfaceImageArchiveManifestEntry- Returns:
- the repository tags associated with this manifest entry
-
getLayers
public List<String> getLayers()
- Specified by:
getLayersin interfaceImageArchiveManifestEntry- Returns:
- the layer archive paths for this manifest entry
-
-