Home / Class/ DeprecatedRecord Class — spring-boot Architecture

DeprecatedRecord Class — spring-boot Architecture

Architecture documentation for the DeprecatedRecord class in DeprecatedRecord.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/simple/DeprecatedRecord.java lines 31–45

@TestConfigurationProperties("deprecated-record")
public record DeprecatedRecord(String alpha, String bravo, @TestName("named.charlie") String charlie) {

	@Deprecated
	@TestDeprecatedConfigurationProperty(reason = "some-reason")
	public String alpha() {
		return this.alpha;
	}

	@Deprecated
	@TestDeprecatedConfigurationProperty(reason = "another-reason")
	public String charlie() {
		return this.charlie;
	}
}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free