Project

General

Profile

« Previous | Next » 

Revision b661d598

Added by Andreas Müller over 7 years ago

ref #6066 rename childNodes to childNodesByTaxon in ClassificationController

View differences:

cdmlib-remote/src/main/java/eu/etaxonomy/cdm/remote/controller/ClassificationController.java
144 144
    * @throws IOException
145 145
    */
146 146
   @RequestMapping(
147
           value = {"childNodes"},
147
           value = {"childNodesByTaxon"},
148 148
           method = RequestMethod.GET)
149 149
   public Pager<TaxonNodeDto> doPageChildNodes(
150 150
           @PathVariable("uuid") UUID classificationUuid,
151
           @RequestParam(value = "taxonUuid", required = true) UUID taxonUuid,
151
           @PathVariable("taxonUuid") UUID taxonUuid,
152 152
           @RequestParam(value = "pageNumber", required = false) Integer pageIndex,
153 153
           @RequestParam(value = "pageSize", required = false) Integer pageSize,
154
           @RequestParam(value="sortMode", defaultValue="AlphabeticalOrder") NodeSortMode sortMode,
155
           @RequestParam(value="doSynonyms", defaultValue="false") Boolean doSynonyms,
154
           @RequestParam(value = "sortMode", defaultValue="AlphabeticalOrder") NodeSortMode sortMode,
155
           @RequestParam(value = "doSynonyms", defaultValue="false") Boolean doSynonyms,
156 156
           HttpServletResponse response
157 157
           ) throws IOException {
158 158

  

Also available in: Unified diff