Package org.nutz.plugins.validation

Examples of org.nutz.plugins.validation.Errors


  /**
   * 通过注解对一个Pojo进行验证
   */
  public Errors validate(Object target) {
    Errors errors = new Errors();
    validate(target, errors);
    return errors;
  }
View Full Code Here

TOP

Related Classes of org.nutz.plugins.validation.Errors

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.