Package com.agiletec.plugins.jacms.aps.system.services.content

Examples of com.agiletec.plugins.jacms.aps.system.services.content.ContentDAO


  private void init() throws Exception {
    try {
      this._tagCloudManager = (ITagCloudManager) this.getService(JpcmstagcloudSystemConstants.TAG_CLOUD_MANAGER);
      this._userManager = (IUserManager) this.getService(SystemConstants.USER_MANAGER);
      this._contentManager = (IContentManager) this.getService(JacmsSystemConstants.CONTENT_MANAGER);
      ContentDAO contentDao = new ContentDAO();
      DataSource dataSource = (DataSource) this.getApplicationContext().getBean("portDataSource");
      contentDao.setDataSource(dataSource);
      ILangManager langManager = (ILangManager) this.getService(SystemConstants.LANGUAGE_MANAGER);
      contentDao.setLangManager(langManager);
      this._contentDao = contentDao;

      ConfigInterface configManager = (ConfigInterface) this.getService(SystemConstants.BASE_CONFIG_MANAGER);
      configManager.updateConfigItem(SystemConstants.CONFIG_ITEM_PARAMS, TEST_CONFIG);
    } catch (Throwable t) {
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jacms.aps.system.services.content.ContentDAO

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.