Examples of PropertyMapper


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

      String prefix1,
      String idPrefix2,
      String prefix2) {
    for ( final Map.Entry<PropertyData, PropertyMapper> entry : compositeMapper.getProperties().entrySet() ) {
      final String propertyName = entry.getKey().getName();
      final PropertyMapper nestedMapper = entry.getValue();
      if ( nestedMapper instanceof CompositeMapperBuilder ) {
        addMiddleEqualToQuery(
            (CompositeMapperBuilder) nestedMapper,
            parameters,
            idPrefix1,
View Full Code Here

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

        mainGenerator.getVerEntCfg(), referencedEntityName,
        propertyAuditingData.getPropertyData(),
        referencingIdData, queryGenerator
    );

    PropertyMapper fakeBidirectionalRelationMapper;
    PropertyMapper fakeBidirectionalRelationIndexMapper;
    if ( fakeOneToManyBidirectional ) {
      // In case of a fake many-to-one bidirectional relation, we have to generate a mapper which maps
      // the mapped-by property name to the id of the related entity (which is the owner of the collection).
      final String auditMappedBy = propertyAuditingData.getAuditMappedBy();
View Full Code Here

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

        mainGenerator.getVerEntCfg(), referencedEntityName,
        propertyAuditingData.getPropertyData(),
        referencingIdData, queryGenerator
    );

    PropertyMapper fakeBidirectionalRelationMapper;
    PropertyMapper fakeBidirectionalRelationIndexMapper;
    if ( fakeOneToManyBidirectional ) {
      // In case of a fake many-to-one bidirectional relation, we have to generate a mapper which maps
      // the mapped-by property name to the id of the related entity (which is the owner of the collection).
      final String auditMappedBy = propertyAuditingData.getAuditMappedBy();
View Full Code Here

Examples of org.neo4j.gis.spatial.attributes.PropertyMapper

   * @param name
   * @return
   */ 
  @Override
  public boolean hasProperty(String name) {
    PropertyMapper mapper = layer.getPropertyMappingManager().getPropertyMapper(name);
    return mapper == null ? hasGeometryProperty(name) : hasGeometryProperty(mapper.from());
  }
View Full Code Here

Examples of org.neo4j.gis.spatial.attributes.PropertyMapper

    return result;
  }
 
  @Override
  public Object getProperty(String name) {
    PropertyMapper mapper = layer.getPropertyMappingManager().getPropertyMapper(name);
    return mapper == null ? getGeometryProperty(name) : mapper.map(getGeometryProperty(mapper.from()));
  }
View Full Code Here

Examples of org.structr.core.converter.PropertyMapper

    return databaseConverter(securityContext, null);
  }
 
  @Override
  public PropertyConverter<T, ?> databaseConverter(SecurityContext securityContext, GraphObject entity) {
    return new PropertyMapper(securityContext, entity, mappedKey);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.