Interface ValueProviderResolver
-
- All Known Subinterfaces:
ValueProviderRegistry
- All Known Implementing Classes:
ArtifactDownloadMetricsValueProviderResolver,BuildStageDurationValueProviderResolver,CacheDownloadMetricsValueProviderResolver,ValueProviderRegistry.Adapter,ValueProviderRegistryImpl,WaitReasonStatisticsValueProviderResolver
public interface ValueProviderResolverCreated by Andrey Titov on 6/21/17. A provider that can dynamically provide aValueProviderinstance by a key An implementation of this interface could be registered in theValueProviderRegistryto dynamically provide default value types for unregistered value type keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueProvidergetValueProvider(String key)Should return aValueProviderfor the key in case this key is supported by this provider.
-
-
-
Method Detail
-
getValueProvider
@Nullable ValueProvider getValueProvider(@NotNull String key)
Should return aValueProviderfor the key in case this key is supported by this provider. Null if this key is not supported.
-
-