Bean Validation API 1.0.0.GA-redhat-2

javax.validation
Interface ValidationProviderResolver


public interface ValidationProviderResolver

Determines the list of Bean Validation providers available in the runtime environment

Bean Validation providers are identified by the presence of META-INF/services/javax.validation.spi.ValidationProvider files following the Service Provider pattern described here

Each META-INF/services/javax.validation.spi.ValidationProvider file contains the list of ValidationProvider implementations each of them representing a provider.

Implementations must be thread-safe.

Author:
Emmanuel Bernard

Method Summary
 List<ValidationProvider<?>> getValidationProviders()
          Returns a list of ValidationProviders available in the runtime environment.
 

Method Detail

getValidationProviders

List<ValidationProvider<?>> getValidationProviders()
Returns a list of ValidationProviders available in the runtime environment.

Returns:
list of validation providers.

Bean Validation API 1.0.0.GA-redhat-2

Copyright © 2007-2012 JBoss by Red Hat. All Rights Reserved.