Package org.hibernate.envers.test.entities.reventity

Examples of org.hibernate.envers.test.entities.reventity.CustomDateRevEntity


      List<Map<String, Object>> revisionEntities) {
    for (Map<String, Object> revisionEntity : revisionEntities) {

      Date revendTimestamp = (Date) revisionEntity
          .get(revendTimestampColumName);
      CustomDateRevEntity revEnd = (CustomDateRevEntity) revisionEntity
          .get("REVEND");

      if (revendTimestamp == null) {
        assert revEnd == null;
      } else {
        assert revendTimestamp.getTime() == revEnd.getDateTimestamp().getTime();
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.envers.test.entities.reventity.CustomDateRevEntity

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.