Home / Class/ ImmutableDeducedConstructorBindingProperties Class — spring-boot Architecture

ImmutableDeducedConstructorBindingProperties Class — spring-boot Architecture

Architecture documentation for the ImmutableDeducedConstructorBindingProperties class in ImmutableDeducedConstructorBindingProperties.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/immutable/ImmutableDeducedConstructorBindingProperties.java lines 25–51

@TestConfigurationProperties("immutable")
public class ImmutableDeducedConstructorBindingProperties {

	/**
	 * The name of these properties.
	 */
	private final String theName;

	/**
	 * A simple flag.
	 */
	private final boolean flag;

	public ImmutableDeducedConstructorBindingProperties(@TestDefaultValue("boot") String theName, boolean flag) {
		this.theName = theName;
		this.flag = flag;
	}

	public String getTheName() {
		return this.theName;
	}

	public boolean isFlag() {
		return this.flag;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free