Home / Class/ SpringPropertyModel Class — spring-boot Architecture

SpringPropertyModel Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringPropertyModel.java lines 29–64

class SpringPropertyModel extends NamedModel {

	@SuppressWarnings("NullAway.Init")
	private String scope;

	@SuppressWarnings("NullAway.Init")
	private String defaultValue;

	@SuppressWarnings("NullAway.Init")
	private String source;

	String getScope() {
		return this.scope;
	}

	void setScope(String scope) {
		this.scope = scope;
	}

	String getDefaultValue() {
		return this.defaultValue;
	}

	void setDefaultValue(String defaultValue) {
		this.defaultValue = defaultValue;
	}

	String getSource() {
		return this.source;
	}

	void setSource(String source) {
		this.source = source;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free