Examples of MapDatastoreProvider


Examples of org.hibernate.ogm.datastore.map.impl.MapDatastoreProvider

  public Map<String, Object> extractEntityTuple(SessionFactory sessionFactory, EntityKey key) {
    return getEntityMap( sessionFactory ).get( key );
  }

  private static Map<EntityKey, Map<String, Object>> getEntityMap(SessionFactory sessionFactory) {
    MapDatastoreProvider castProvider = getProvider( sessionFactory );
    return castProvider.getEntityMap();
  }
View Full Code Here

Examples of org.hibernate.ogm.datastore.map.impl.MapDatastoreProvider

    }
    return MapDatastoreProvider.class.cast( provider );
  }

  private static Map<AssociationKey, Map<RowKey, Map<String, Object>>> getAssociationCache( SessionFactory sessionFactory) {
    MapDatastoreProvider castProvider = getProvider( sessionFactory );
    return castProvider.getAssociationsMap();
  }
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.