Package org.apache.cayenne.cache

Examples of org.apache.cayenne.cache.MockQueryCache


        query.setCacheStrategy(QueryCacheStrategy.SHARED_CACHE);
        query.setPageSize(5);
       
        QueryCache cache = domain.queryCache;
       
        domain.queryCache = new MockQueryCache() {
          
            @Override
            public List get(QueryMetadata metadata, QueryCacheEntryFactory factory) {
                Object results = factory.createObject();
                assertTrue("Query cache is not serializable.", results instanceof Serializable);
View Full Code Here


        query.setCacheStrategy(QueryCacheStrategy.SHARED_CACHE);
        query.setPageSize(5);

        QueryCache cache = domain.queryCache;

        domain.queryCache = new MockQueryCache() {

            @Override
            public List<?> get(QueryMetadata metadata, QueryCacheEntryFactory factory) {
                Object results = factory.createObject();
                assertTrue(
View Full Code Here

TOP

Related Classes of org.apache.cayenne.cache.MockQueryCache

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.