Examples of DbForumFactory


Examples of org.nemesis.forum.impl.DbForumFactory

   
    ActionErrors errors = new ActionErrors();
   
    try {
        ForumFactory forumFactory = ForumFactory.getInstance(getAuthToken(request));
        DbForumFactory dbForumFactory = null;
        dbForumFactory = (DbForumFactory)((ForumFactoryProxy)forumFactory).getUnderlyingForumFactory();
        DbCacheManager cacheManager = dbForumFactory.getCacheManager();
 
        //action
        if(request.getParameter("switchcache")!=null){
          cacheManager.setCacheEnabled(!cacheManager.isCacheEnabled());
        }
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.