Package com.yym.sina.weibo

Examples of com.yym.sina.weibo.WeiboServiceImpl


@RequestMapping(value="/weibo")
public class WeiboController {
 
  @RequestMapping(method=RequestMethod.GET)
  public @ResponseBody List<WeiboPost> getRecentWeiboPosts() {
    WeiboService ws = new WeiboServiceImpl();
    List<WeiboPost> result
      = ws.getRecentUserPost(WeiboServiceImpl.myUid);
    return result;
  }
View Full Code Here

TOP

Related Classes of com.yym.sina.weibo.WeiboServiceImpl

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.