Home / Class/ MultiConstructorConfigurationProperties Class — spring-boot Architecture

MultiConstructorConfigurationProperties Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/MultiConstructorConfigurationProperties.java lines 27–56

public class MultiConstructorConfigurationProperties {

	private @Nullable String name;

	private int age;

	public MultiConstructorConfigurationProperties() {
	}

	public MultiConstructorConfigurationProperties(String name) {
		this.name = name;
	}

	public @Nullable String getName() {
		return this.name;
	}

	public void setName(@Nullable String name) {
		this.name = name;
	}

	public int getAge() {
		return this.age;
	}

	public void setAge(int age) {
		this.age = age;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free