All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mongodb.morphia.mapping.cache.DefaultEntityCacheFactory Maven / Gradle / Ivy

The newest version!
package org.mongodb.morphia.mapping.cache;

/**
 * Default implementation of cache factory, returning the default entity cache.
 */
public class DefaultEntityCacheFactory implements EntityCacheFactory {

    /**
     * Creates a new DefaultEntityCache
     *
     * @return the cache
     */
    public EntityCache createCache() {
        return new DefaultEntityCache();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy