Package com.commafeed.backend.model

Examples of com.commafeed.backend.model.FeedEntryTag


    List<FeedEntryTag> addList = Lists.newArrayList();
    List<FeedEntryTag> removeList = Lists.newArrayList();

    for (String tagName : tagNames) {
      FeedEntryTag tag = tagMap.get(tagName);
      if (tag == null) {
        addList.add(new FeedEntryTag(user, entry, tagName));
      }
    }

    for (FeedEntryTag tag : tags) {
      if (!tagNames.contains(tag.getName())) {
        removeList.add(tag);
      }
    }

    feedEntryTagDAO.saveOrUpdate(addList);
View Full Code Here

TOP

Related Classes of com.commafeed.backend.model.FeedEntryTag

Copyright © 2018 www.massapicom. 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.