Package com.googlecode.richrest.server.action

Examples of com.googlecode.richrest.server.action.Pageable


  public void serialize(Serializable result, HttpServletResponse response)
      throws IOException {
    String page;
    Action<Serializable, Serializable> action = ActionContext.getContext().getAction();
    if (action instanceof Pageable) {
      Pageable pageAction = (Pageable)action;
      page = pageAction.getPage();
    } else {
      page = getPage(action);
    }
    // 页面扩展名
    String pageExtension = getPageExtension();
View Full Code Here

TOP

Related Classes of com.googlecode.richrest.server.action.Pageable

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.