Home / Class/ ImmutableSource Class — spring-boot Architecture

ImmutableSource Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/source/ImmutableSource.java lines 23–40

public class ImmutableSource {

	@SuppressWarnings("unused")
	private final String name;

	@SuppressWarnings("unused")
	private final String description;

	@SuppressWarnings("unused")
	private final String type;

	public ImmutableSource(String name, String description, String type) {
		this.name = name;
		this.description = description;
		this.type = type;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free