Home / Class/ BindingProperties Class — spring-boot Architecture

BindingProperties Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindHandlerAdvisorTests.java lines 168–190

	static class BindingProperties {

		private @Nullable String destination;

		private String contentType = "application/json";

		@Nullable String getDestination() {
			return this.destination;
		}

		void setDestination(@Nullable String destination) {
			this.destination = destination;
		}

		String getContentType() {
			return this.contentType;
		}

		void setContentType(String contentType) {
			this.contentType = contentType;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free