Home / Class/ Dependency Class — spring-boot Architecture

Dependency Class — spring-boot Architecture

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

Entity Profile

Source Code

cli/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/Dependency.java lines 26–52

final class Dependency {

	private final @Nullable String id;

	private final @Nullable String name;

	private final @Nullable String description;

	Dependency(@Nullable String id, @Nullable String name, @Nullable String description) {
		this.id = id;
		this.name = name;
		this.description = description;
	}

	@Nullable String getId() {
		return this.id;
	}

	@Nullable String getName() {
		return this.name;
	}

	@Nullable String getDescription() {
		return this.description;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free