Examples of FeedEntriesXO


Examples of org.sonatype.nexus.timeline.feeds.rest.model.FeedEntriesXO

   * Lists all the feeds existing.
   */
  @GET
  @RequiresPermissions("nexus:feeds:read")
  public FeedEntriesXO get() {
    final FeedEntriesXO result = new FeedEntriesXO();
    for (FeedSource feedSource : feedSources) {
      final FeedEntryXO entry = new FeedEntryXO();
      entry.setResourceURI(BaseUrlHolder.get() + "/service/siesta" + TimelinePlugin.SERVICE_PREFIX + "/feeds/" + feedSource.getFeedKey());
      entry.setName(feedSource.getFeedName());
      entry.setDescription(feedSource.getFeedDescription());
      result.getFeedEntries().add(entry);
    }
    return result;
  }
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.