Home / Class/ WithWellKnownTypes Class — spring-boot Architecture

WithWellKnownTypes Class — spring-boot Architecture

Architecture documentation for the WithWellKnownTypes 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 478–504

	public static class WithWellKnownTypes implements ApplicationContextAware, EnvironmentAware {

		@SuppressWarnings("NullAway.Init")
		private ApplicationContext applicationContext;

		@SuppressWarnings("NullAway.Init")
		private Environment environment;

		public ApplicationContext getApplicationContext() {
			return this.applicationContext;
		}

		@Override
		public void setApplicationContext(ApplicationContext applicationContext) {
			this.applicationContext = applicationContext;
		}

		public Environment getEnvironment() {
			return this.environment;
		}

		@Override
		public void setEnvironment(Environment environment) {
			this.environment = environment;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free