Home / Class/ OverrideChildProperties Class — spring-boot Architecture

OverrideChildProperties Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/inheritance/OverrideChildProperties.java lines 19–52

public class OverrideChildProperties extends BaseProperties {

	private long longValue;

	private final CustomNest nest = new CustomNest();

	public long getLongValue() {
		return this.longValue;
	}

	public void setLongValue(long longValue) {
		this.longValue = longValue;
	}

	@Override
	public CustomNest getNest() {
		return this.nest;
	}

	public static class CustomNest extends Nest {

		private long longValue;

		public long getLongValue() {
			return this.longValue;
		}

		public void setLongValue(long longValue) {
			this.longValue = longValue;
		}

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free