Package org.jspresso.framework.util.bean.integrity

Examples of org.jspresso.framework.util.bean.integrity.IntegrityException


    if (newValue instanceof byte[]) {
      // watch out for java serializable property
      final byte[] propertyValueAsByteArray = (byte[]) newValue;
      if (getMaxLength() != null
          && propertyValueAsByteArray.length > getMaxLength().intValue()) {
        IntegrityException ie = new IntegrityException("[" + getName()
            + "] value (" + propertyValueAsByteArray + ") is too long on ["
            + component + "].") {

          private static final long serialVersionUID = 7459823123892198831L;
View Full Code Here

TOP

Related Classes of org.jspresso.framework.util.bean.integrity.IntegrityException

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.