Package org.hibernate.validator.cfg.defs

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


    final HibernateValidatorConfiguration config = getConfiguration( HibernateValidator.class );
    ConstraintMapping mapping = config.createConstraintMapping();
    mapping.type( Product.class )
        .property( "productNumber", FIELD )
        .constraint(
            new Mod11CheckDef()
                .threshold( Integer.MAX_VALUE )
                .startIndex( 0 )
                .endIndex( 12 )
                .ignoreNonDigitCharacters( true )
                .treatCheck10As( 'X' )
View Full Code Here

TOP

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

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.