Home / Class/ ExampleWithInvalidAccessors Class — spring-boot Architecture

ExampleWithInvalidAccessors Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/JavaBeanBinderTests.java lines 1009–1029

	static class ExampleWithInvalidAccessors {

		private @Nullable String name;

		@Nullable String getName() {
			return this.name;
		}

		void setName(@Nullable String name) {
			this.name = name;
		}

		String get() {
			throw new IllegalArgumentException("should not be invoked");
		}

		boolean is() {
			throw new IllegalArgumentException("should not be invoked");
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free