本文整理了Java中com.rometools.rome.feed.atom.Feed.setId()
方法的一些代码示例,展示了Feed.setId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Feed.setId()
方法的具体详情如下:
包路径:com.rometools.rome.feed.atom.Feed
类名称:Feed
方法名:setId
[英]Sets the feed ID.
[中]设置提要ID。
代码示例来源:origin: arnaldop/enhanced-pet-clinic
@Override
protected void buildFeedMetadata(Map<String, Object> model, Feed feed, HttpServletRequest request) {
feed.setId("tag:springsource.org");
feed.setTitle("Veterinarians");
feed.setUpdated(new Date());
}
代码示例来源:origin: mploed/event-driven-spring-boot
@Override
protected void buildFeedMetadata(Map<String, Object> model, Feed feed, HttpServletRequest request) {
feed.setId("https://github.com/mploed/event-driven-spring-boot/credit-decision");
feed.setTitle("Approved Credit Applications");
List<Link> alternateLinks = new ArrayList<>();
Link link = new Link();
link.setRel("self");
link.setHref(baseUrl(request) + "feed");
alternateLinks.add(link);
List<SyndPerson> authors = new ArrayList<SyndPerson>();
Person person = new Person();
person.setName("Big Pug Bank");
authors.add(person);
feed.setAuthors(authors);
feed.setAlternateLinks(alternateLinks);
feed.setUpdated(decisionMemoRepository.lastUpdate());
Content subtitle = new Content();
subtitle.setValue("List of all APPROVED credit applications");
feed.setSubtitle(subtitle);
}
代码示例来源:origin: mploed/event-driven-spring-boot
@Override
protected void buildFeedMetadata(Map<String, Object> model, Feed feed, HttpServletRequest request) {
feed.setId("https://github.com/mploed/event-driven-spring-boot/customer");
feed.setTitle("Customer");
List<Link> alternateLinks = new ArrayList<>();
Link link = new Link();
link.setRel("self");
link.setHref(baseUrl(request) + "feed");
alternateLinks.add(link);
List<SyndPerson> authors = new ArrayList<SyndPerson>();
Person person = new Person();
person.setName("Big Pug Bank");
authors.add(person);
feed.setAuthors(authors);
feed.setAlternateLinks(alternateLinks);
feed.setUpdated(customerRepository.lastUpdate());
Content subtitle = new Content();
subtitle.setValue("List of all customers");
feed.setSubtitle(subtitle);
}
代码示例来源:origin: mploed/ddd-with-spring
@Override
protected void buildFeedMetadata(Map<String, Object> model, Feed feed, HttpServletRequest request) {
feed.setId("https://github.com/mploed/ddd-with-spring/credit-agency");
feed.setTitle("Credit Agency Ratings");
List<Link> alternateLinks = new ArrayList<>();
Link link = new Link();
link.setRel("self");
link.setHref(baseUrl(request) + "feed");
alternateLinks.add(link);
List<SyndPerson> authors = new ArrayList<SyndPerson>();
Person person = new Person();
person.setName("Big Pug Bank");
authors.add(person);
feed.setAuthors(authors);
feed.setAlternateLinks(alternateLinks);
feed.setUpdated(personRatingRepository.lastUpdate());
Content subtitle = new Content();
subtitle.setValue("List of all valid person ratings");
feed.setSubtitle(subtitle);
}
代码示例来源:origin: apache/roller
feed.setId(atomURL
+"/"+website.getHandle() + "/resources/" + path + start);
feed.setTitle(website.getName());
代码示例来源:origin: rometools/rome
private InputStream createDefaultFeedDocument(final String uri) throws AtomException {
final Feed f = new Feed();
f.setTitle("Feed");
f.setId(uri);
f.setFeedType(FEED_TYPE);
final Link selfLink = new Link();
selfLink.setRel("self");
selfLink.setHref(uri);
f.getOtherLinks().add(selfLink);
try {
final WireFeedOutput wireFeedOutput = new WireFeedOutput();
final Document feedDoc = wireFeedOutput.outputJDom(f);
final XMLOutputter outputter = new XMLOutputter();
// outputter.setFormat(Format.getCompactFormat());
final OutputStream fos = FileStore.getFileStore().getFileOutputStream(getFeedPath());
outputter.output(feedDoc, new OutputStreamWriter(fos, "UTF-8"));
} catch (final FeedException ex) {
throw new AtomException(ex);
} catch (final IOException ex) {
throw new AtomException(ex);
} catch (final Exception e) {
e.printStackTrace();
}
return FileStore.getFileStore().getFileInputStream(getFeedPath());
}
代码示例来源:origin: apache/roller
List<WeblogEntry> entries = roller.getWeblogEntryManager().getWeblogEntries(wesc);
Feed feed = new Feed();
feed.setId(atomURL
+"/"+website.getHandle() + "/entries/" + start);
feed.setTitle(website.getName());
代码示例来源:origin: rometools/rome
aFeed.setStyleSheet(syndFeed.getStyleSheet());
aFeed.setId(syndFeed.getUri());
代码示例来源:origin: com.rometools/rome
aFeed.setStyleSheet(syndFeed.getStyleSheet());
aFeed.setId(syndFeed.getUri());
代码示例来源:origin: rometools/rome
aFeed.setStyleSheet(syndFeed.getStyleSheet());
aFeed.setId(syndFeed.getUri());
代码示例来源:origin: com.rometools/rome
aFeed.setStyleSheet(syndFeed.getStyleSheet());
aFeed.setId(syndFeed.getUri());
代码示例来源:origin: rometools/rome
feed.setId(id.getText());
代码示例来源:origin: com.rometools/rome
feed.setId(id.getText());
代码示例来源:origin: rometools/rome
feed.setId(id.getText());
代码示例来源:origin: com.rometools/rome
feed.setId(id.getText());
内容来源于网络,如有侵权,请联系作者删除!