1 17 package org.apache.roller.util.rome; 18 19 import com.sun.syndication.feed.rss.Item; 20 import com.sun.syndication.feed.synd.SyndEntry; 21 import com.sun.syndication.feed.synd.impl.ConverterForRSS091Userland; 22 23 25 public class PlanetConverterForRSS091N extends ConverterForRSS091Userland { 26 27 public PlanetConverterForRSS091N() { 28 this("rss_0.91N"); 29 } 30 protected PlanetConverterForRSS091N(String type) { 31 super(type); 32 } 33 protected SyndEntry createSyndEntry(Item item) { 34 SyndEntry entry = super.createSyndEntry(item); 35 entry.setPublishedDate(item.getPubDate()); 36 return entry; 37 } 38 } 39 | Popular Tags |