fix compile errros in classification service
authorAndreas Müller <a.mueller@bgbm.org>
Fri, 17 Jun 2016 07:26:07 +0000 (09:26 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Fri, 17 Jun 2016 07:28:27 +0000 (09:28 +0200)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientClassificationService.java

index 64a4993bd6794fa11300af454803e788ec766948..e80fa35020f3649b6fbacc16913b0c5ddd502689 100644 (file)
@@ -1002,10 +1002,18 @@ public class TransientClassificationService implements IClassificationService {
        }
 
        @Override
-    public List<TaxonNode> listSiblingsOfTaxon(UUID taxonUuid, UUID classificationUuid, Integer pageSize, Integer pageIndex,
-            List<String> propertyPaths) {
-           return defaultService.listSiblingsOfTaxon(taxonUuid, classificationUuid, pageSize, pageIndex,
-                   propertyPaths);
+       public List<TaxonNode> listSiblingsOfTaxon(UUID taxonUuid,
+                       UUID classificationUuid, Integer pageSize, Integer pageIndex,
+                       List<String> propertyPaths) {
+               
+               return defaultService.listSiblingsOfTaxon(taxonUuid, classificationUuid, pageSize, pageIndex, propertyPaths);
+       }
+
+       @Override
+       public Pager<TaxonNode> pageSiblingsOfTaxon(UUID taxonUuid,
+                       UUID classificationUuid, Integer pageSize, Integer pageIndex,
+                       List<String> propertyPaths) {
+               return defaultService.pageSiblingsOfTaxon(taxonUuid, classificationUuid, pageSize, pageIndex, propertyPaths);
        }