Uses of Interface
org.springframework.boot.context.properties.bind.BindContext
Packages that use BindContext
Package
Description
Support for
@ConfigurationProperties binding.General
BindHandler implementations.Binding validation support.
-
Uses of BindContext in org.springframework.boot.context.properties.bind
Methods in org.springframework.boot.context.properties.bind with parameters of type BindContextModifier and TypeMethodDescriptiondefault ObjectBindHandler.onCreate(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) Called when binding of an element ends with an unbound result and a newly created instance is about to be returned.@Nullable ObjectAbstractBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) default @Nullable ObjectBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) Called when binding fails for any reason (including failures fromBindHandler.onSuccess(ConfigurationPropertyName, Bindable, BindContext, Object)orBindHandler.onCreate(ConfigurationPropertyName, Bindable, BindContext, Object)calls).voidAbstractBindHandler.onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, @Nullable Object result) default voidBindHandler.onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, @Nullable Object result) Called when binding finishes with either bound or unbound result.<T> @Nullable Bindable<T> AbstractBindHandler.onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context) default <T> @Nullable Bindable<T> BindHandler.onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context) Called when binding of an element starts but before any result has been determined.@Nullable ObjectAbstractBindHandler.onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) default @Nullable ObjectBindHandler.onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) Called when binding of an element ends with a successful result.@Nullable ObjectBoundPropertiesTrackingBindHandler.onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) -
Uses of BindContext in org.springframework.boot.context.properties.bind.handler
Methods in org.springframework.boot.context.properties.bind.handler with parameters of type BindContextModifier and TypeMethodDescription@Nullable ObjectIgnoreErrorsBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) @Nullable ObjectIgnoreTopLevelConverterNotFoundBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) @Nullable ObjectNoUnboundElementsBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) voidNoUnboundElementsBindHandler.onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, @Nullable Object result) <T> @Nullable Bindable<T> NoUnboundElementsBindHandler.onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context) @Nullable ObjectNoUnboundElementsBindHandler.onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) -
Uses of BindContext in org.springframework.boot.context.properties.bind.validation
Methods in org.springframework.boot.context.properties.bind.validation with parameters of type BindContextModifier and TypeMethodDescription@Nullable ObjectValidationBindHandler.onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) voidValidationBindHandler.onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, @Nullable Object result) <T> @Nullable Bindable<T> ValidationBindHandler.onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context) @Nullable ObjectValidationBindHandler.onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result)