Package com.opengamma.master.holiday

Examples of com.opengamma.master.holiday.HolidaySearchSortOrder


      @QueryParam("type") String type,
      @QueryParam("currency") String currencyISO,
      @QueryParam("holidayId") List<String> holidayIdStrs,
      @Context UriInfo uriInfo) {
    PagingRequest pr = buildPagingRequest(pgIdx, pgNum, pgSze);
    HolidaySearchSortOrder so = buildSortOrder(sort, HolidaySearchSortOrder.NAME_ASC);
    FlexiBean out = createSearchResultData(pr, so, name, type, currencyISO, holidayIdStrs, uriInfo);
    return getFreemarker().build(HTML_DIR + "holidays.ftl", out);
  }
View Full Code Here


      @QueryParam("type") String type,
      @QueryParam("currency") String currencyISO,
      @QueryParam("holidayId") List<String> holidayIdStrs,
      @Context UriInfo uriInfo) {
    PagingRequest pr = buildPagingRequest(pgIdx, pgNum, pgSze);
    HolidaySearchSortOrder so = buildSortOrder(sort, HolidaySearchSortOrder.NAME_ASC);
    FlexiBean out = createSearchResultData(pr, so, name, type, currencyISO, holidayIdStrs, uriInfo);
    return getFreemarker().build(JSON_DIR + "holidays.ftl", out);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.master.holiday.HolidaySearchSortOrder

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.