Home / Class/ AbstractGenericProperties Class — spring-boot Architecture

AbstractGenericProperties Class — spring-boot Architecture

Architecture documentation for the AbstractGenericProperties class in AbstractGenericProperties.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/generic/AbstractGenericProperties.java lines 30–54

public class AbstractGenericProperties<A, B, C> {

	/**
	 * Generic name.
	 */
	private A name;

	/**
	 * Generic mappings.
	 */
	private final Map<B, C> mappings = new HashMap<>();

	public A getName() {
		return this.name;
	}

	public void setName(A name) {
		this.name = name;
	}

	public Map<B, C> getMappings() {
		return this.mappings;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free