Interface ConfigDataLocationResolverContext
public interface ConfigDataLocationResolverContext
Context provided to 
ConfigDataLocationResolver methods.- Since:
- 2.4.0
- Author:
- Phillip Webb, Madhura Bhave
- 
Method SummaryModifier and TypeMethodDescriptionProvides access to a binder that can be used to obtain previously contributed values.Provides access to theConfigurableBootstrapContextshared across allEnvironmentPostProcessors.@Nullable ConfigDataResourceProvides access to the parentConfigDataResourcethat triggered the resolve ornullif there is no available parent.
- 
Method Details- 
getBinderBinder getBinder()Provides access to a binder that can be used to obtain previously contributed values.- Returns:
- a binder instance
 
- 
getParent@Nullable ConfigDataResource getParent()Provides access to the parentConfigDataResourcethat triggered the resolve ornullif there is no available parent.- Returns:
- the parent location
 
- 
getBootstrapContextConfigurableBootstrapContext getBootstrapContext()Provides access to theConfigurableBootstrapContextshared across allEnvironmentPostProcessors.- Returns:
- the bootstrap context
 
 
-