Package com.commafeed.backend.model

Examples of com.commafeed.backend.model.FeedSubscription


    FeedEntry entry = feedEntryDAO.findById(entryId);
    if (entry == null) {
      return;
    }

    FeedSubscription sub = feedSubscriptionDAO.findByFeed(user, entry.getFeed());
    if (sub == null) {
      return;
    }

    FeedEntryStatus status = feedEntryStatusDAO.getStatus(user, sub, entry);
View Full Code Here


    }
  }

  public void starEntry(User user, Long entryId, Long subscriptionId, boolean starred) {

    FeedSubscription sub = feedSubscriptionDAO.findById(user, subscriptionId);
    if (sub == null) {
      return;
    }

    FeedEntry entry = feedEntryDAO.findById(entryId);
View Full Code Here

TOP

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

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.