Home / Class/ ExampleFailingConstructorBean Class — spring-boot Architecture

ExampleFailingConstructorBean Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java lines 617–638

	static class ExampleFailingConstructorBean {

		private final String name;

		private final Object value;

		ExampleFailingConstructorBean(String name, String value) {
			Assert.notNull(name, "'name' must be not null.");
			Assert.notNull(value, "'value' must be not null.");
			this.name = name;
			this.value = value;
		}

		String getName() {
			return this.name;
		}

		Object getValue() {
			return this.value;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free