Home / Class/ JavaBeanWithPublicConstructor Class — spring-boot Architecture

JavaBeanWithPublicConstructor Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/JavaBeanWithPublicConstructor.java lines 26–45

public class JavaBeanWithPublicConstructor {

	private @Nullable String value;

	public JavaBeanWithPublicConstructor() {
	}

	public JavaBeanWithPublicConstructor(String value) {
		setValue(value);
	}

	public @Nullable String getValue() {
		return this.value;
	}

	public void setValue(@Nullable String value) {
		this.value = value;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free