Package com.commafeed.backend.model

Examples of com.commafeed.backend.model.QFeed


        .list(entry.id);
    return Iterables.getFirst(list, null);
  }

  public List<FeedEntry> findWithoutSubscriptions(int max) {
    QFeed feed = QFeed.feed;
    QFeedSubscription sub = QFeedSubscription.feedSubscription;
    return newQuery().from(entry).join(entry.feed, feed).leftJoin(feed.subscriptions, sub).where(sub.id.isNull()).limit(max)
        .list(entry);
  }
View Full Code Here

TOP

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

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.