Package br.com.caelum.vraptor.dash.hibernate.stats

Examples of br.com.caelum.vraptor.dash.hibernate.stats.CollectionStatsWrapper


    result.include("entityCacheStats", entityCacheStats);


    List<CollectionStatsWrapper> collectionsStatsList = new ArrayList<CollectionStatsWrapper>();
    for (String collectionRoleName : statistics.getCollectionRoleNames()) {
      collectionsStatsList.add(new CollectionStatsWrapper(collectionRoleName, statistics));
    }
    result.include("collectionsStatsList", collectionsStatsList);

    List<net.sf.ehcache.Statistics> collectionsCacheStatsList = new ArrayList<net.sf.ehcache.Statistics>();
    List<CacheManager> allCacheManagers = CacheManager.ALL_CACHE_MANAGERS;
View Full Code Here


    result.include("entityCacheStats", entityCacheStats);


    List<CollectionStatsWrapper> collectionsStatsList = new ArrayList<CollectionStatsWrapper>();
    for (String collectionRoleName : statistics.getCollectionRoleNames()) {
      collectionsStatsList.add(new CollectionStatsWrapper(collectionRoleName, statistics));
    }
    result.include("collectionsStatsList", collectionsStatsList);

    List<net.sf.ehcache.Statistics> collectionsCacheStatsList = new ArrayList<net.sf.ehcache.Statistics>();
    List<CacheManager> allCacheManagers = CacheManager.ALL_CACHE_MANAGERS;
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.dash.hibernate.stats.CollectionStatsWrapper

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.