org.hibernate.validator.parameternameprovider.ParanamerParameterNameProvider Java Examples
The following examples show how to use
org.hibernate.validator.parameternameprovider.ParanamerParameterNameProvider.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ValidationConfigurationContextResolver.java From parsec-libraries with Apache License 2.0 | 5 votes |
/** Get a context. */ @Override public ValidationConfig getContext(Class<?> type) { final ValidationConfig config = new ValidationConfig(); config.constraintValidatorFactory(resourceContext.getResource(InjectingConstraintValidatorFactory.class)); CachingParanamer paranamer = new CachingParanamer(new CustomAnnotationParanamer()); config.parameterNameProvider(new ParanamerParameterNameProvider(paranamer)); return config; }
Example #2
Source File: ValidationFeature.java From ameba with MIT License | 5 votes |
@Override public ValidationConfig getContext(final Class<?> type) { return new ValidationConfig() .constraintValidatorFactory(resourceContext.getResource(InjectingConstraintValidatorFactory.class)) .parameterNameProvider(new ParanamerParameterNameProvider()) .messageInterpolator( new ResourceBundleMessageInterpolator( buildBundleLocator(VALIDATION_MESSAGE_BUNDLE_NAME), buildBundleLocator(Messages.BUNDLE_NAME), mode.isProd() ) ); }