public interface ValidationProviderResolver
Determines the list of Jakarta Validation providers available in the runtime environment
 
 Jakarta Validation providers are identified by the presence of
 META-INF/services/jakarta.validation.spi.ValidationProvider
 files following the Service Provider pattern described
 here.
 
 Each META-INF/services/jakarta.validation.spi.ValidationProvider file contains the
 list of ValidationProvider implementations each of them representing a provider.
 
Implementations must be thread-safe.
- 
Method Summary
Modifier and TypeMethodDescriptionReturns a list ofValidationProvideravailable in the runtime environment. 
- 
Method Details
- 
getValidationProviders
List<ValidationProvider<?>> getValidationProviders()Returns a list ofValidationProvideravailable in the runtime environment.- Returns:
 - list of validation providers
 
 
 -