Home / Class/ AutowiredProperties Class — spring-boot Architecture

AutowiredProperties Class — spring-boot Architecture

Architecture documentation for the AutowiredProperties class in AutowiredProperties.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/simple/AutowiredProperties.java lines 26–46

public class AutowiredProperties {

	/**
	 * The name of this simple properties.
	 */
	private String theName;

	@TestAutowired
	public AutowiredProperties(String theName) {
		this.theName = theName;
	}

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

	public void setTheName(String name) {
		this.theName = name;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free