public interface BindHandler
binding
.Modifier and Type | Field and Description |
---|---|
static BindHandler |
DEFAULT
Default no-op bind handler.
|
static final BindHandler DEFAULT
default <T> Bindable<T> onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context)
T
- the bindable source typename
- the name of the element being boundtarget
- the item being boundcontext
- the bind contextnull
)default Object onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result)
name
- the name of the element being boundtarget
- the item being boundcontext
- the bind contextresult
- the bound result (never null
)null
)default Object onCreate(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result)
name
- the name of the element being boundtarget
- the item being boundcontext
- the bind contextresult
- the newly created instance (never null
)null
)default Object onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) throws Exception
onSuccess(org.springframework.boot.context.properties.source.ConfigurationPropertyName, org.springframework.boot.context.properties.bind.Bindable<?>, org.springframework.boot.context.properties.bind.BindContext, java.lang.Object)
or onCreate(org.springframework.boot.context.properties.source.ConfigurationPropertyName, org.springframework.boot.context.properties.bind.Bindable<?>, org.springframework.boot.context.properties.bind.BindContext, java.lang.Object)
calls). Implementations may choose to
swallow exceptions and return an alternative result.name
- the name of the element being boundtarget
- the item being boundcontext
- the bind contexterror
- the cause of the error (if the exception stands it may be re-thrown)null
).Exception
- if the binding isn't validdefault void onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) throws Exception
onFailure(org.springframework.boot.context.properties.source.ConfigurationPropertyName, org.springframework.boot.context.properties.bind.Bindable<?>, org.springframework.boot.context.properties.bind.BindContext, java.lang.Exception)
.name
- the name of the element being boundtarget
- the item being boundcontext
- the bind contextresult
- the bound result (may be null
)Exception
- if the binding isn't valid