Home / Class/ ImageProgressUpdateEvent Class — spring-boot Architecture

ImageProgressUpdateEvent Class — spring-boot Architecture

Architecture documentation for the ImageProgressUpdateEvent class in ImageProgressUpdateEvent.java from the spring-boot codebase.

Entity Profile

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/ImageProgressUpdateEvent.java lines 28–46

public class ImageProgressUpdateEvent extends ProgressUpdateEvent {

	private final @Nullable String id;

	protected ImageProgressUpdateEvent(@Nullable String id, String status, @Nullable ProgressDetail progressDetail,
			@Nullable String progress) {
		super(status, progressDetail, progress);
		this.id = id;
	}

	/**
	 * Returns the ID of the image layer being updated if available.
	 * @return the ID of the updated layer or {@code null}
	 */
	public @Nullable String getId() {
		return this.id;
	}

}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free