当前位置: 首页>>代码示例>>Java>>正文


Java SyndEntry.setTitle方法代码示例

本文整理汇总了Java中com.sun.syndication.feed.synd.SyndEntry.setTitle方法的典型用法代码示例。如果您正苦于以下问题:Java SyndEntry.setTitle方法的具体用法?Java SyndEntry.setTitle怎么用?Java SyndEntry.setTitle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.syndication.feed.synd.SyndEntry的用法示例。


在下文中一共展示了SyndEntry.setTitle方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createFeedEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
private @Nonnull SyndEntry createFeedEntry(@Nonnull String extractPageElement, @Nullable String titleSelector,
		@Nullable String linkSelector, @Nullable String authorSelector) {
	SyndEntry entry = new SyndEntryImpl();
	if(titleSelector != null) {
		entry.setTitle(stripHtml(getText(extractPageElement, titleSelector)));
	}
	if(linkSelector != null) {
			entry.setLink(makeAbsolute(getHref(getText(extractPageElement, linkSelector)), pageUrl));
	}
	if(authorSelector != null) {
		entry.setAuthor(stripHtml(getText(extractPageElement, authorSelector)));
	}
	
	entry.setDescription(createFeedContent(extractPageElement));
	return entry;
}
 
开发者ID:rrauschenbach,项目名称:FeedExpander,代码行数:17,代码来源:FeedCreatorImpl.java

示例2: apply

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
@Override
public SyndEntry apply(final FedoraEvent event) {
    final SyndEntry entry = new SyndEntryImpl();
    try {
        entry.setTitle(event.getIdentifier());
        entry.setLink(event.getPath());
        entry.setPublishedDate(new DateTime(event.getDate())
                .toDate());
        final SyndContent description = new SyndContentImpl();
        description.setType("text/plain");
        description.setValue(event.getTypes().toString());
        entry.setDescription(description);
    } catch (final RepositoryException e) {
        throw propagate(e);
    }
    return entry;
}
 
开发者ID:fcrepo4-archive,项目名称:fcrepo-module-rss,代码行数:18,代码来源:RSSPublisher.java

示例3: createEntries

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
private List<SyndEntry> createEntries() throws DatabaseException {
  List<SyndEntry> entries = Lists.newArrayList();

  Date publishedData = new Date();

  for (PacketProblem problem : database.getLastestProblems()) {
    SyndEntry entry = new SyndEntryImpl();
    String problemReportSentence = problem.getProblemReportSentence();
    if (problemReportSentence.length() > 20) {
      problemReportSentence = problemReportSentence.substring(0, 20);
    }
    entry.setTitle("問題番号:" + problem.id + " " + problemReportSentence + "...");
    entry.setLink("http://kishibe.dyndns.tv/qmaclone/");
    entry.setPublishedDate(publishedData);
    SyndContent description = new SyndContentImpl();
    description.setType("text/plain");
    description.setValue(problemReportSentence);
    entry.setDescription(description);
    entry.setAuthor(problem.creator);
    entries.add(entry);
  }

  return entries;
}
 
开发者ID:nodchip,项目名称:QMAClone,代码行数:25,代码来源:RssServletStub.java

示例4: createSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
protected SyndEntry createSyndEntry(Item item) {
    SyndEntry syndEntry = new SyndEntryImpl();

    syndEntry.setModules(ModuleUtils.cloneModules(item.getModules()));

    syndEntry.setUri(item.getLink());
    syndEntry.setTitle(item.getTitle());
    syndEntry.setLink(item.getLink());
    return syndEntry;
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:11,代码来源:ConverterForRSS090.java

示例5: getBuildEntries

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
private List getBuildEntries(final ConfigurationManager cm, final int activeBuildID, final BuildStatusURLGenerator urlGenerator) {
  final List result = new ArrayList(11);

  // traverse cmplete build runs for the given build
  final List completedBuildRuns = cm.getCompletedBuildRuns(activeBuildID, 0, PublishedResultFeedGenerator.MAX_BUILD_RUNS);
  for (final Iterator i = completedBuildRuns.iterator(); i.hasNext();) {
    final BuildRun buildRun = (BuildRun)i.next();

    // compose description
    final String resultDescr = buildRun.getResultID() == BuildRun.BUILD_RESULT_BROKEN ? ": " + buildRun.getResultDescription() : "";
    final StringBuffer subj = new StringBuffer(200);
    subj.append(buildRun.getBuildName()).append(" # ").append(buildRun.getBuildRunNumberAsString());
    subj.append(' ').append(new VerbialBuildResult().getVerbialResultString(buildRun));
    subj.append(resultDescr);

    // compose entry
    final SyndEntry entry = new SyndEntryImpl();
    entry.setTitle(subj.toString());
    entry.setPublishedDate(buildRun.getFinishedAt());
    entry.setLink(urlGenerator.makeBuildRunResultURL(buildRun));
    final SyndContent description = new SyndContentImpl();
    description.setType("text/plain");
    //description.setType("text/html");
    description.setValue(subj.toString());
    entry.setDescription(description);

    // edd entry to the result
    result.add(entry);
  }
  return result;
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:32,代码来源:PublishedResultFeedGenerator.java

示例6: getBuildEntries

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
private List getBuildEntries(final ConfigurationManager cm, final int activeBuildID, final BuildStatusURLGenerator urlGenerator) {
  final List result = new ArrayList(1);

  // traverse cmplete build runs for the given build
  final List completedBuildRuns = cm.getCompletedBuildRuns(activeBuildID, 0, MAX_BUILD_RUNS);
  for (final Iterator i = completedBuildRuns.iterator(); i.hasNext();) {
    final BuildRun buildRun = (BuildRun) i.next();

    // compose description
    final String resultDescr = buildRun.getResultID() == BuildRun.BUILD_RESULT_BROKEN ? ": " + buildRun.getResultDescription() : "";
    final StringBuffer subj = new StringBuffer(200);
    subj.append(buildRun.getBuildName()).append(" # ").append(buildRun.getBuildRunNumberAsString());
    subj.append(" @ ").append(buildRun.getChangeListNumber());
    subj.append(" on ").append(new SimpleDateFormat("yyyy-MM-dd HH:ss z").format(buildRun.getFinishedAt()));
    subj.append(' ').append(new VerbialBuildResult().getVerbialResultString(buildRun));
    subj.append(resultDescr);

    // compose entry
    final SyndEntry entry = new SyndEntryImpl();
    entry.setTitle(subj.toString());
    entry.setPublishedDate(buildRun.getFinishedAt());
    entry.setLink(urlGenerator.makeBuildRunResultURL(buildRun));
    final SyndContent description = new SyndContentImpl();
    description.setType("text/plain");
    //description.setType("text/html");
    description.setValue(subj.toString());
    entry.setDescription(description);

    // edd entry to the result
    result.add(entry);
  }
  return result;
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:34,代码来源:FeedGenerator.java

示例7: makeEntryFromRSSCorrespon

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
/**
 * コレポンからRSSのエントリー(それぞれのItem)を作成.
 */
private SyndEntry makeEntryFromRSSCorrespon(
    RSSCorrespon c, String baseURL) {
    if (log.isDebugEnabled()) {
        log.debug("id[{}]", c.getId());
    }
    SyndEntry entry = new ExtendedSyndEntryImpl();

    // title設定
    entry.setTitle(c.getSubject());
    // description設定
    entry.setDescription(makeDescriptionFromRSSCorrespon(c, baseURL));
    // link(とguid)設定
    entry.setLink(baseURL + "correspon/correspon.jsf?id=" + c.getId()
            + "&projectId=" + c.getProjectId());
    // author設定
    SyndPerson author = new SyndPersonImpl();
    author.setEmail(c.getProjectId() + " : " + c.getProjectNameE());
    List<SyndPerson> authors = new ArrayList<SyndPerson>();
    authors.add(author);
    entry.setAuthors(authors);
    // category設定
    SyndCategory category = new SyndCategoryImpl();
    category.setName(c.getCategory().getLabel());
    List<SyndCategory> categories = new ArrayList<SyndCategory>();
    categories.add(category);
    entry.setCategories(categories);
    // pubDate(とdc:date)設定
    entry.setPublishedDate(c.getUpdatedAt());

    return entry;
}
 
开发者ID:otsecbsol,项目名称:linkbinder,代码行数:35,代码来源:RSSServiceImpl.java

示例8: getSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
public static SyndEntry getSyndEntry(Connection db, int id, String url) throws SQLException {
  SyndEntry entry = new SyndEntryImpl();
  try {
    Project project = new Project(db, id);
    if (!project.getApproved() || !project.getApprovalDate().before(new Timestamp(System.currentTimeMillis()))) {
      return null;
    }
    entry.setTitle(project.getTitle());
    // Need to check status
    entry.setPublishedDate(project.getEntered());
    entry.setAuthor(UserUtils.getUserName(project.getEnteredBy()));
    entry.setLink(url + "/show/" + project.getUniqueId());

    SyndContent description = new SyndContentImpl();
    description.setType("text/html");
    if (StringUtils.hasText(project.getShortDescription())) {
      if (project.getShortDescription().length() > 1000) {
        description.setValue(project.getShortDescription().substring(0, 1000));
      } else {
        description.setValue(project.getShortDescription());
      }
    }
    entry.setDescription(description);
  } catch (Exception e) {
    //likely if the object does not exist.
    return null;
  }

  return entry;
}
 
开发者ID:Concursive,项目名称:concourseconnect-community,代码行数:31,代码来源:ProjectFeedEntry.java

示例9: getSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
public static SyndEntry getSyndEntry(Connection db, int id, String url) throws SQLException {
  SyndEntry entry = new SyndEntryImpl();
  try {
    BlogPost blogPost = new BlogPost(db, id);
    Project project = ProjectUtils.loadProject(blogPost.getProjectId());
    if (blogPost.getStatus() != BlogPost.PUBLISHED) {
      return null;
    }
    entry.setTitle(blogPost.getSubject());
    // Need to check status
    entry.setPublishedDate(blogPost.getStartDate());
    entry.setAuthor(UserUtils.getUserName(blogPost.getEnteredBy()));
    entry.setLink(url + "/show/" + project.getUniqueId() + "/post/" + blogPost.getId());
    SyndContent description = new SyndContentImpl();
    description.setType("text/html");
    if (StringUtils.hasText(blogPost.getIntro())) {
      if (blogPost.getIntro().length() > 1000) {
        description.setValue(blogPost.getIntro().substring(0, 1000));
      } else {
        description.setValue(blogPost.getIntro());
      }
    }
    entry.setDescription(description);
  } catch (Exception e) {
    //likely if the object does not exist.
    return null;
  }

  return entry;
}
 
开发者ID:Concursive,项目名称:concourseconnect-community,代码行数:31,代码来源:BlogPostFeedEntry.java

示例10: getSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
public static SyndEntry getSyndEntry(Connection db, int id, String url) throws SQLException {
  SyndEntry entry = new SyndEntryImpl();
  try {
    ProjectRating projectRating = new ProjectRating(db, id);
    Project project = ProjectUtils.loadProject(projectRating.getProjectId());
    if (!project.getApproved() || !project.getApprovalDate().before(new Timestamp(System.currentTimeMillis()))) {
      return null;
    }
    entry.setTitle(project.getTitle() + " review " + "\"" + projectRating.getTitle() + "\" (" + projectRating.getRating() + "/5)");
    entry.setPublishedDate(projectRating.getEntered());
    entry.setAuthor(UserUtils.getUserName(projectRating.getEnteredBy()));
    entry.setLink(url + "/show/" + project.getUniqueId() + "/review/" + projectRating.getId());

    SyndContent description = new SyndContentImpl();
    description.setType("text/html");
    if (StringUtils.hasText(projectRating.getComment())) {
      if (projectRating.getComment().length() > 500) {
        description.setValue(projectRating.getComment().substring(0, 500));
      } else {
        description.setValue(projectRating.getComment());
      }
    }
    entry.setDescription(description);
  } catch (Exception e) {
    //likely if the object does not exist.
    return null;
  }

  return entry;
}
 
开发者ID:Concursive,项目名称:concourseconnect-community,代码行数:31,代码来源:ProjectRatingFeedEntry.java

示例11: getSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
public static SyndEntry getSyndEntry(Connection db, int id, String url) throws SQLException {
  SyndEntry entry = new SyndEntryImpl();
  try {
    Topic topic = new Topic(db, id);
    Project project = ProjectUtils.loadProject(topic.getProjectId());
    if (!project.getApproved() || !project.getApprovalDate().before(new Timestamp(System.currentTimeMillis()))) {
      return null;
    }
    entry.setTitle("Discussion - " + topic.getSubject());
    entry.setPublishedDate(topic.getEntered());
    entry.setAuthor(UserUtils.getUserName(topic.getEnteredBy()));
    entry.setLink(url + "/show/" + project.getUniqueId() + "/topic/" + topic.getId());

    SyndContent description = new SyndContentImpl();
    description.setType("text/html");
    if (StringUtils.hasText(topic.getBody())) {
      if (topic.getBody().length() > 500) {
        description.setValue(topic.getBody().substring(0, 500));
      } else {
        description.setValue(topic.getBody());
      }
    }
    entry.setDescription(description);
  } catch (Exception e) {
    //likely if the object does not exist.
    return null;
  }

  return entry;
}
 
开发者ID:Concursive,项目名称:concourseconnect-community,代码行数:31,代码来源:DiscussionTopicFeedEntry.java

示例12: createFeedEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
private SyndEntry createFeedEntry(String title, String content, int index) {
    SyndEntry entry = new SyndEntryImpl();
    entry.setTitle(title + index);
    entry.setLink("http://localhost:8080/rss-tests/" + index);
    entry.setPublishedDate(new Date());

    SyndContent description = new SyndContentImpl();
    description.setType("text/plain");
    description.setValue(content + index);
    entry.setDescription(description);
    return entry;
}
 
开发者ID:wildfly-extras,项目名称:wildfly-camel,代码行数:13,代码来源:RSSFeedServlet.java

示例13: createSyndEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
protected SyndEntry createSyndEntry(Item item) {
    SyndEntry syndEntry = new SyndEntryImpl();

    syndEntry.setModules(ModuleUtils.cloneModules(item.getModules()));
    
    if (((List)item.getForeignMarkup()).size() > 0) {
        syndEntry.setForeignMarkup(item.getForeignMarkup());
    }
    
    syndEntry.setUri(item.getUri());
    syndEntry.setLink(item.getLink());
    syndEntry.setTitle(item.getTitle());
    syndEntry.setLink(item.getLink());
    return syndEntry;
}
 
开发者ID:Norkart,项目名称:NK-VirtualGlobe,代码行数:16,代码来源:ConverterForRSS090.java

示例14: rss

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
public String rss() throws IOException, FeedException {
    SyndFeed feed = new SyndFeedImpl();
    feed.setTitle("hiscores.shmup.com");
    feed.setFeedType("rss_2.0");
    feed.setDescription("hiscores.shmup.com");
    feed.setLink("http://hiscores.shmup.com");
    List entries = new ArrayList();
    feed.setEntries(entries);
    for (Score score : scores) {
        SyndEntry entry = new SyndEntryImpl();
        entry.setTitle(score.getGameTitle());
        entry.setAuthor(score.player.name);
        entry.setLink("http://hiscores.shmup.com/score/" + score.id);
        SyndContentImpl content = new SyndContentImpl();
        content.setValue(score.tweet());
        entry.setDescription(content);
        entry.setPublishedDate(score.getCreatedAt());
        entry.setUpdatedDate(score.getCreatedAt());
        SyndEnclosureImpl enclosure = new SyndEnclosureImpl();
        enclosure.setUrl(score.game.cover);
        enclosure.setType(score.game.getCoverType());
        entry.setEnclosures(Lists.newArrayList(enclosure));
        entries.add(entry);
    }
    Writer writer = new StringWriter();
    SyndFeedOutput output = new SyndFeedOutput();
    output.output(feed, writer);
    writer.close();
    Controller.response().setContentType("application/rss+xml");
    return writer.toString();
}
 
开发者ID:jsmadja,项目名称:shmuphiscores,代码行数:32,代码来源:Timeline.java

示例15: createRssEntry

import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
/**
 * Creates the feeds entry.
 *
 * @param item
 *            The note.
 * @param locale
 *            The locale.
 * @param dateFormatter
 *            The date formatter.
 * @return The entry as {@link SyndEntry}.
 */
private SyndEntry createRssEntry(final NoteData item, Locale locale, DateFormat dateFormatter) {
    SyndEntry entry = new SyndEntryImpl();
    String noHtmlTitle = StringEscapeHelper.getSingleLineTextFromXML(item.getContent());
    int endIndex = Math.min(noHtmlTitle.length(), 100);
    String title = item.getBlog().getTitle() + ": " + noHtmlTitle.substring(0, endIndex);
    if (title.length() < noHtmlTitle.length()) {
        title += "...";
    }
    if (item.isDirect()) {
        title = messages.getText("rss.item.direct.message.prefix", locale) + " " + title;
    }
    entry.setTitle(title);
    entry.setLink(ServiceLocator.instance().getService(PermalinkGenerationManagement.class)
            .getNoteLink(item.getBlog().getAlias(), item.getId(), true));
    entry.setPublishedDate(item.getCreationDate());
    entry.setUpdatedDate(item.getLastModificationDate());
    String author = UserNameHelper.getCompleteSignature(item.getUser(), " ", item.getUser()
            .getAlias());
    entry.setAuthor(author);

    ArrayList<SyndCategory> categories = new ArrayList<SyndCategory>();
    for (TagData tag : item.getTags()) {
        SyndCategoryImpl category = new SyndCategoryImpl();
        category.setName(tag.getName());
        category.setTaxonomyUri(ServiceLocator.instance()
                .getService(PermalinkGenerationManagement.class)
                .getTagLink(tag.getName(), true));
        categories.add(category);
    }
    entry.setCategories(categories);
    SyndContent description = new SyndContentImpl();
    description.setType("text/html");
    StringBuilder content = new StringBuilder();
    content.append(messages.getText("newsfeed.microblog.content.metadata.author", locale));
    content.append(author);
    content.append(messages.getText(
            "newsfeed.microblog.content.metadata.author.date.separator", locale));
    content.append(dateFormatter.format(item.getCreationDate()));
    content.append(messages.getText(
            "newsfeed.microblog.content.metadata.date.content.separator", locale));
    content.append(item.getContent());

    if (CollectionUtils.isNotEmpty(item.getAttachments())) {
        content.append(messages.getText("rss.item.attachment.list", locale) + " ");
        for (AttachmentData attachment : item.getAttachments()) {
            content.append("<a href=\"");
            content.append(AttachmentHelper.determineAbsoluteAttachmentUrl(attachment, true));
            content.append("\">");
            content.append(attachment.getFileName());
            content.append("</a> ");
        }
    }
    description.setValue(content.toString());
    entry.setDescription(description);
    return entry;
}
 
开发者ID:Communote,项目名称:communote-server,代码行数:68,代码来源:RssNoteWriter.java


注:本文中的com.sun.syndication.feed.synd.SyndEntry.setTitle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。