Home / Class/ WithExternalNested Class — spring-boot Architecture

WithExternalNested Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java lines 427–450

	public static class WithExternalNested {

		private @Nullable String name;

		@NestedConfigurationProperty
		private @Nullable SampleType sampleType;

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

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

		public @Nullable SampleType getSampleType() {
			return this.sampleType;
		}

		public void setSampleType(@Nullable SampleType sampleType) {
			this.sampleType = sampleType;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free