*/
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);
}