Home / Class/ LombokExplicitProperties Class — spring-boot Architecture

LombokExplicitProperties Class — spring-boot Architecture

Architecture documentation for the LombokExplicitProperties class in LombokExplicitProperties.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/LombokExplicitProperties.java lines 32–71

@TestConfigurationProperties("explicit")
public class LombokExplicitProperties {

	@Getter
	private final String id = "super-id";

	/**
	 * Name description.
	 */
	@Getter
	@Setter
	private String name;

	@Getter
	@Setter
	private String description;

	@Getter
	@Setter
	private Integer counter;

	@Deprecated
	@Getter
	@Setter
	private Integer number = 0;

	@Getter
	private final List<String> items = new ArrayList<>();

	// Should be ignored if no annotation is set
	@SuppressWarnings("unused")
	private String ignored;

	@Getter
	private String ignoredOnlyGetter;

	@Setter
	private String ignoredOnlySetter;

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free