Home / Class/ ImmutableProperties Class — spring-boot Architecture

ImmutableProperties Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTestBeanTests.java lines 68–81

	@ConfigurationProperties("immutable")
	static class ImmutableProperties {

		private final String property;

		ImmutableProperties(String property) {
			this.property = property;
		}

		String getProperty() {
			return this.property;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free