Home / Class/ AddedPropertySource Class — spring-boot Architecture

AddedPropertySource Class — spring-boot Architecture

Architecture documentation for the AddedPropertySource class in TestConfigDataEnvironmentUpdateListener.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/config/TestConfigDataEnvironmentUpdateListener.java lines 52–79

	static class AddedPropertySource {

		private final PropertySource<?> propertySource;

		private final @Nullable ConfigDataLocation location;

		private final @Nullable ConfigDataResource resource;

		AddedPropertySource(PropertySource<?> propertySource, @Nullable ConfigDataLocation location,
				@Nullable ConfigDataResource resource) {
			this.propertySource = propertySource;
			this.location = location;
			this.resource = resource;
		}

		PropertySource<?> getPropertySource() {
			return this.propertySource;
		}

		@Nullable ConfigDataLocation getLocation() {
			return this.location;
		}

		@Nullable ConfigDataResource getResource() {
			return this.resource;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free