Package com.commafeed.backend.model.UserSettings

Examples of com.commafeed.backend.model.UserSettings.ReadingOrder


    if (!user.isPresent()) {
      resp.sendRedirect(resp.encodeRedirectURL(config.getApplicationSettings().getPublicUrl()));
      return;
    }

    final ReadingOrder order = StringUtils.equals(orderParam, "asc") ? ReadingOrder.asc : ReadingOrder.desc;

    FeedEntryStatus status = new UnitOfWork<FeedEntryStatus>(sessionFactory) {
      @Override
      protected FeedEntryStatus runInSession() throws Exception {
        FeedEntryStatus status = null;
View Full Code Here

TOP

Related Classes of com.commafeed.backend.model.UserSettings.ReadingOrder

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.