Home / Class/ PersonAndAliensProperties Class — spring-boot Architecture

PersonAndAliensProperties Class — spring-boot Architecture

Architecture documentation for the PersonAndAliensProperties class in ConfigurationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 2242–2266

	@EnableConfigurationProperties
	@ConfigurationProperties("test")
	static class PersonAndAliensProperties {

		private @Nullable Person person;

		private @Nullable List<Alien> aliens;

		@Nullable Person getPerson() {
			return this.person;
		}

		void setPerson(@Nullable Person person) {
			this.person = person;
		}

		@Nullable List<Alien> getAliens() {
			return this.aliens;
		}

		void setAliens(@Nullable List<Alien> aliens) {
			this.aliens = aliens;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free