Examples of RssHelper


Examples of org.infoglue.deliver.util.rss.RssHelper

   */
  public int doEndTag() throws JspException
    {
      try
      {
        RssHelper rssHelper = new RssHelper();
        SyndFeed feed = rssHelper.getFeed(this.feedType, this.title, this.link, this.description, this.encoding);

        feed.setEntries(entries);
       
        String rss = rssHelper.render(feed);
        setResultAttribute(rss);
      }
      catch(Exception e)
      {
          logger.error("An error occurred when generating RSS-feed:" + e.getMessage(), e);
View Full Code Here

Examples of org.infoglue.deliver.util.rss.RssHelper

   * This method gets the rss utility.
   */
 
  public RssHelper getRssHelper()
  {
    return new RssHelper();
  }
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.