Home / Class/ AlwaysPropertySourceOptions Class — spring-boot Architecture

AlwaysPropertySourceOptions Class — spring-boot Architecture

Architecture documentation for the AlwaysPropertySourceOptions class in ConfigData.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigData.java lines 155–168

	private static class AlwaysPropertySourceOptions implements PropertySourceOptions {

		private final Options options;

		AlwaysPropertySourceOptions(Options options) {
			this.options = options;
		}

		@Override
		public Options get(PropertySource<?> propertySource) {
			return this.options;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free