Package org.hibernate.validator.cfg.defs

Examples of org.hibernate.validator.cfg.defs.NullDef


    ConstraintMapping mapping = config.createConstraintMapping();
    mapping.type( Bar.class )
        .property( "property", FIELD )
        .ignoreAnnotations()
        .constraint( new NullDef() );
    config.addMapping( mapping );
    validator = config.buildValidatorFactory().getValidator();
    violations = validator.validate( new Bar() );

    assertNumberOfViolations( violations, 0 );
View Full Code Here

TOP

Related Classes of org.hibernate.validator.cfg.defs.NullDef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.