Home / Class/ CustomPropertiesEndpoint Class — spring-boot Architecture

CustomPropertiesEndpoint Class — spring-boot Architecture

Architecture documentation for the CustomPropertiesEndpoint class in CustomPropertiesEndpoint.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/endpoint/CustomPropertiesEndpoint.java lines 28–43

@TestEndpoint(id = "customprops")
@TestConfigurationProperties("management.endpoint.customprops")
public class CustomPropertiesEndpoint {

	private String name = "test";

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

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

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free