ManifestEntry Class — spring-boot Architecture
Architecture documentation for the ManifestEntry class in ImageArchiveManifest.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/type/ImageArchiveManifest.java lines 62–88
public static class ManifestEntry extends MappedObject {
private final List<String> layers;
protected ManifestEntry(JsonNode node) {
super(node, MethodHandles.lookup());
this.layers = extractLayers();
}
/**
* Return the collection of layer IDs from a section of the manifest.
* @return a collection of layer IDs
*/
public List<String> getLayers() {
return this.layers;
}
@SuppressWarnings("unchecked")
private List<String> extractLayers() {
List<String> layers = valueAt("/Layers", List.class);
if (layers == null) {
return Collections.emptyList();
}
return layers;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free