Package org.springframework.data.redis.samples.retwisj.web

Examples of org.springframework.data.redis.samples.retwisj.web.WebPost


    return sort;
  }

  private WebPost convertPost(String pid, Map hash) {
    Post post = postMapper.fromHash(hash);
    WebPost wPost = new WebPost(post);
    wPost.setPid(pid);
    wPost.setName(findName(post.getUid()));
    wPost.setReplyTo(findName(post.getReplyUid()));
    wPost.setContent(replaceReplies(post.getContent()));
    return wPost;
  }
View Full Code Here


    return sort;
  }

  private WebPost convertPost(String pid, Map hash) {
    Post post = postMapper.fromHash(hash);
    WebPost wPost = new WebPost(post);
    wPost.setPid(pid);
    wPost.setName(findName(post.getUid()));
    wPost.setReplyTo(findName(post.getReplyUid()));
    wPost.setContent(replaceReplies(post.getContent()));
    return wPost;
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.redis.samples.retwisj.web.WebPost

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.