Package org.eurekastreams.server.persistence.strategies

Examples of org.eurekastreams.server.persistence.strategies.PersonQueryStrategy


    public void setup()
    {
        cache = new SimpleMemoryCache();

        // Setup the cache loader to get dataset data into the cache.
        personCacheLoader = new PersonCacheLoader(new PersonQueryStrategy());
        personCacheLoader.setCache(cache);
        personCacheLoader.setEntityManager(getEntityManager());
        personCacheLoader.initialize();

        followedPersonIdsMapper = new GetFollowedPersonIdsForPersonByIdDbMapper();
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.persistence.strategies.PersonQueryStrategy

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.