Package org.hibernate.envers.internal.entities.mapper

Examples of org.hibernate.envers.internal.entities.mapper.PersistentCollectionChangeData


      final Map<String, Object> entityData = new HashMap<String, Object>();
      final Map<String, Object> originalId = createIdMap( ordinal++ );
      entityData.put( commonCollectionMapperData.getVerEntCfg().getOriginalIdPropName(), originalId );

      collectionChanges.add(
          new PersistentCollectionChangeData(
              commonCollectionMapperData.getVersionsMiddleEntityName(), entityData, changedObj
          )
      );
      // Mapping the collection owner's id.
      commonCollectionMapperData.getReferencingIdData().getPrefixedMapper().mapToMapFromId( originalId, id );
View Full Code Here

TOP

Related Classes of org.hibernate.envers.internal.entities.mapper.PersistentCollectionChangeData

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.