Package com.opengamma.master.exchange

Examples of com.opengamma.master.exchange.ExchangeSearchSortOrder


      @QueryParam("sort") String sort,
      @QueryParam("name") String name,
      @QueryParam("exchangeId") List<String> exchangeIdStrs,
      @Context UriInfo uriInfo) {
    PagingRequest pr = buildPagingRequest(pgIdx, pgNum, pgSze);
    ExchangeSearchSortOrder so = buildSortOrder(sort, ExchangeSearchSortOrder.NAME_ASC);
    FlexiBean out = createSearchResultData(pr, so, name, exchangeIdStrs, uriInfo);
    return getFreemarker().build(HTML_DIR + "exchanges.ftl", out);
  }
View Full Code Here


      @QueryParam("sort") String sort,
      @QueryParam("name") String name,
      @QueryParam("exchangeId") List<String> exchangeIdStrs,
      @Context UriInfo uriInfo) {
    PagingRequest pr = buildPagingRequest(pgIdx, pgNum, pgSze);
    ExchangeSearchSortOrder so = buildSortOrder(sort, ExchangeSearchSortOrder.NAME_ASC);
    FlexiBean out = createSearchResultData(pr, so, name, exchangeIdStrs, uriInfo);
    return getFreemarker().build(JSON_DIR + "exchanges.ftl", out);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.master.exchange.ExchangeSearchSortOrder

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.