Home / Class/ NestedPropertiesMethod Class — spring-boot Architecture

NestedPropertiesMethod Class — spring-boot Architecture

Architecture documentation for the NestedPropertiesMethod class in NestedPropertiesMethod.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/method/NestedPropertiesMethod.java lines 22–69

@TestConfigurationProperties("method-nested")
public class NestedPropertiesMethod {

	private String myProperty;

	private final NestedProperty nested = new NestedProperty();

	private final Inner inner = new Inner();

	public String getMyProperty() {
		return this.myProperty;
	}

	public void setMyProperty(String myProperty) {
		this.myProperty = myProperty;
	}

	@TestNestedConfigurationProperty
	public NestedProperty getNested() {
		return this.nested;
	}

	public Inner getInner() {
		return this.inner;
	}

	public static class Inner {

		private String myInnerProperty;

		private final NestedProperty nested = new NestedProperty();

		public String getMyInnerProperty() {
			return this.myInnerProperty;
		}

		public void setMyInnerProperty(String myInnerProperty) {
			this.myInnerProperty = myInnerProperty;
		}

		@TestNestedConfigurationProperty
		public NestedProperty getNested() {
			return this.nested;
		}

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free