Home / Class/ LombokInnerClassWithGetterProperties Class — spring-boot Architecture

LombokInnerClassWithGetterProperties Class — spring-boot Architecture

Architecture documentation for the LombokInnerClassWithGetterProperties class in LombokInnerClassWithGetterProperties.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/lombok/LombokInnerClassWithGetterProperties.java lines 23–41

@Data
@TestConfigurationProperties("config")
@SuppressWarnings("unused")
public class LombokInnerClassWithGetterProperties {

	private final Foo first = new Foo();

	public Foo getFirst() {
		return this.first;
	}

	@Data
	public static class Foo {

		private String name;

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free