Package org.hibernate.validator.cfg.defs

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


    mapping.type( Marathon.class )
        .property( "name", METHOD )
        .constraint( new NotNullDef() )
        .type( Tournament.class )
        .property( "tournamentDate", METHOD )
        .constraint( new FutureDef() );
    config.addMapping( mapping );
    Validator validator = config.buildValidatorFactory().getValidator();

    Marathon marathon = new Marathon();
    marathon.setName( "New York Marathon" );
View Full Code Here

TOP

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

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.