Home / Class/ BoxingPojo Class — spring-boot Architecture

BoxingPojo Class — spring-boot Architecture

Architecture documentation for the BoxingPojo class in BoxingPojo.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/specific/BoxingPojo.java lines 27–62

@TestConfigurationProperties("boxing")
public class BoxingPojo {

	private boolean flag;

	private Boolean anotherFlag;

	private Integer counter;

	public boolean isFlag() {
		return this.flag;
	}

	// Setter use Boolean
	public void setFlag(Boolean flag) {
		this.flag = flag;
	}

	public boolean isAnotherFlag() {
		return Boolean.TRUE.equals(this.anotherFlag);
	}

	public void setAnotherFlag(boolean anotherFlag) {
		this.anotherFlag = anotherFlag;
	}

	public Integer getCounter() {
		return this.counter;
	}

	// Setter use int
	public void setCounter(int counter) {
		this.counter = counter;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free