javax.validation.TraversableResolver Java Examples

The following examples show how to use javax.validation.TraversableResolver. 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: LocalValidatorFactoryBean.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
	Assert.notNull(this.validatorFactory, "No target ValidatorFactory set");
	return this.validatorFactory.getTraversableResolver();
}
 
Example #2
Source File: CustomValidatorProvider.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
    return null;
}
 
Example #3
Source File: CustomValidatorProvider.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getDefaultTraversableResolver() {
    return null;
}
 
Example #4
Source File: CustomValidatorProvider.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public NullConfig traversableResolver(final TraversableResolver resolver) {
    return null;
}
 
Example #5
Source File: ValidatorBuilder.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
    return delegate().getTraversableResolver();
}
 
Example #6
Source File: ValidatorBuilder.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getDefaultTraversableResolver() {
    return delegate.getDefaultTraversableResolver();
}
 
Example #7
Source File: ValidatorBuilder.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public T traversableResolver(final TraversableResolver resolver) {
    return delegate.traversableResolver(resolver);
}
 
Example #8
Source File: SingleValidatorFactoryWrapper.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
    return factory().getTraversableResolver();
}
 
Example #9
Source File: ValidatorFactoryWrapper.java    From tomee with Apache License 2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
    return factory().getTraversableResolver();
}
 
Example #10
Source File: IronJacamarValidatorFactory.java    From ironjacamar with Eclipse Public License 1.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
public TraversableResolver getTraversableResolver()
{
   return validatorFactory.getTraversableResolver();
}
 
Example #11
Source File: SerializableValidatorFactory.java    From ironjacamar with Eclipse Public License 1.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
public TraversableResolver getTraversableResolver()
{
   return validatorFactory.getTraversableResolver();
}
 
Example #12
Source File: ValidationConfiguration.java    From cxf with Apache License 2.0 4 votes vote down vote up
public void setTraversableResolver(TraversableResolver traversableResolver) {
    this.traversableResolver = traversableResolver;
}
 
Example #13
Source File: ValidationConfiguration.java    From cxf with Apache License 2.0 4 votes vote down vote up
public TraversableResolver getTraversableResolver() {
    return traversableResolver;
}
 
Example #14
Source File: CustomValidatorBean.java    From spring-analysis-note with MIT License 4 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #15
Source File: CustomValidatorBean.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #16
Source File: SerializableValidatorFactory.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
public TraversableResolver getTraversableResolver()
{
   return validatorFactory.getTraversableResolver();
}
 
Example #17
Source File: LocalValidatorFactoryBean.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
	Assert.notNull(this.validatorFactory, "No target ValidatorFactory set");
	return this.validatorFactory.getTraversableResolver();
}
 
Example #18
Source File: CustomValidatorBean.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #19
Source File: LocalValidatorFactoryBean.java    From java-technology-stack with MIT License 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
	Assert.notNull(this.validatorFactory, "No target ValidatorFactory set");
	return this.validatorFactory.getTraversableResolver();
}
 
Example #20
Source File: CustomValidatorBean.java    From java-technology-stack with MIT License 4 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #21
Source File: LocalValidatorFactoryBean.java    From spring-analysis-note with MIT License 4 votes vote down vote up
@Override
public TraversableResolver getTraversableResolver() {
	Assert.notNull(this.validatorFactory, "No target ValidatorFactory set");
	return this.validatorFactory.getTraversableResolver();
}
 
Example #22
Source File: LocalValidatorFactoryBean.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this ValidatorFactory
 * and its exposed default Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #23
Source File: LocalValidatorFactoryBean.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this ValidatorFactory
 * and its exposed default Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #24
Source File: LocalValidatorFactoryBean.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this ValidatorFactory
 * and its exposed default Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}
 
Example #25
Source File: LocalValidatorFactoryBean.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Specify a custom TraversableResolver to use for this ValidatorFactory
 * and its exposed default Validator.
 */
public void setTraversableResolver(TraversableResolver traversableResolver) {
	this.traversableResolver = traversableResolver;
}