Package org.mapache.business.category

Examples of org.mapache.business.category.CategoryManager


    public BusinessController() {
     
    }
    private CategoryManager getCategoryManager() {
        if(_categoryManager==null){
            _categoryManager = new CategoryManager();
        }
        return _categoryManager;
    }
View Full Code Here


            _instance = new BlogController();
        return _instance;
    }
    private CategoryManager getCategoryManager() {
        if(_categoryManager==null){
            _categoryManager = new CategoryManager();
        }
        return _categoryManager;
    }
View Full Code Here

    private static BlogManager instance;

    public BlogManager() {
        blogDataAccess =
                configurationManager.getInstance().getDAOFactory().getBlogDAO();
        categoryManager = new CategoryManager();
        topicManager = new TopicManager();
        replyManager = new ReplyManager();
    }
View Full Code Here

TOP

Related Classes of org.mapache.business.category.CategoryManager

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.