Home / Type/ TestDeprecatedConfigurationProperty Type — spring-boot Architecture

TestDeprecatedConfigurationProperty Type — spring-boot Architecture

Architecture documentation for the TestDeprecatedConfigurationProperty type/interface in TestDeprecatedConfigurationProperty.java from the spring-boot codebase.

Entity Profile

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/TestDeprecatedConfigurationProperty.java lines 31–54

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TestDeprecatedConfigurationProperty {

	/**
	 * The reason for the deprecation.
	 * @return the deprecation reason
	 */
	String reason() default "";

	/**
	 * The field that should be used instead (if any).
	 * @return the replacement field
	 */
	String replacement() default "";

	/**
	 * The version in which the property became deprecated.
	 * @return the version
	 */
	String since() default "";

}

Analyze Your Own Codebase

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

Try Supermodel Free