Examples of IRssManager


Examples of com.agiletec.plugins.jprss.aps.system.services.rss.IRssManager

*/
public class RssListTag extends TagSupport {
 
  @Override
  public int doStartTag() throws JspException {
    IRssManager rssManager = (IRssManager) ApsWebApplicationUtils.getBean(JpRssSystemConstants.RSS_MANAGER, this.pageContext);
    try {
      List<Channel> activeChannels = rssManager.getChannels(Channel.STATUS_ACTIVE);
      this.pageContext.setAttribute(this.getListName(), activeChannels);
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "doStartTag");
      throw new JspException("Error in RssListTag - doStartTag", t);
    }
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.