Package org.exoplatform.services.rss.parser

Source Code of org.exoplatform.services.rss.parser.DefaultRSSItem

/**
* Copyright (C) 2009 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.exoplatform.services.rss.parser;

import org.exoplatform.services.xml.parser.XMLNode;

import java.util.List;

/**
* Created by The eXo Platform SARL        .
* Author : Nhu Dinh Thuan
*          nhudinhthuan@yahoo.com
* Mar 13, 2006../
*/
public class DefaultRSSItem implements IRSSItem
{

   private String title = "", desc = "", image = "", time = "", link = "", creator = "";

   private XMLNode node;

   public DefaultRSSItem()
   {
   }

   public void setTitle(String title)
   {
      this.title = title;
   }

   public String getTitle()
   {
      return title;
   }

   public void setDesc(String desc)
   {
      this.desc = desc;
   }

   public String getDesc()
   {
      return desc;
   }

   public void setImage(String image)
   {
      this.image = image;
   }

   public String getImage()
   {
      return image;
   }

   public void setTime(String time)
   {
      this.time = time;
   }

   public String getTime()
   {
      return time;
   }

   public void setLink(String link)
   {
      this.link = link;
   }

   public String getLink()
   {
      return link;
   }

   //TODO: dang.tung add new creator of content
   public void setCreator(String creator)
   {
      this.creator = creator;
   }

   public String getCreator()
   {
      return creator;
   }

   public void setNode(XMLNode node)
   {
      this.node = node;
   }

   public XMLNode getNode()
   {
      return node;
   }

   public XMLNode getItem(String name)
   {
      List<XMLNode> children = node.getChildren();
      for (XMLNode ele : children)
      {
         if (ele.isNode(name))
            return ele;
      }
      return null;
   }

   public String getValueItem(String name)
   {
      XMLNode n = getItem(name);
      if (n == null || n.getTotalChildren() < 1)
         return "";
      return n.getChild(0).getNodeValue();
   }

}
TOP

Related Classes of org.exoplatform.services.rss.parser.DefaultRSSItem

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.