Project

General

Profile

« Previous | Next » 

Revision aea91dac

Added by Patrick Plitzner almost 8 years ago

Fix transient services

View differences:

eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientClassificationService.java
635 635
        return defaultService.loadChildNodesOfTaxonNode(taxonNode, propertyPaths);
636 636
    }
637 637

  
638
    /**
639
     * @param classification
640
     * @return
641
     * @see eu.etaxonomy.cdm.api.service.IClassificationService#getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(eu.etaxonomy.cdm.model.taxon.Classification)
642
     */
643
    @Override
644
    public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(Classification classification, List<UUID> excludeTaxa) {
645
        return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classification, excludeTaxa);
646
    }
647 638

  
648 639
    /**
649 640
     * @param taxon
......
901 892
	@Override
902 893
	public DeleteResult isDeletable(Classification object,
903 894
			DeleteConfiguratorBase config) {
904
		
895

  
905 896
		return defaultService.isDeletable(object, config);
906 897
	}
907 898

  
......
990 981
		return defaultService.getUuidAndTitleCache(null, null);
991 982
	}
992 983

  
993
	@Override
994
	public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(
995
			UUID classificationUuid,  Integer limit,
996
			String pattern) {
997
		return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classificationUuid, limit, pattern);
998
	}
999

  
1000
	@Override
1001
	public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(
1002
			Classification classification, 
1003
			Integer limit, String pattern) {
1004
		return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classification, limit, pattern);
1005
	}
1006

  
1007 984
	@Override
1008 985
	public List<TaxonNode> listSiblingsOfTaxon(UUID taxonUuid,
1009 986
			UUID classificationUuid, Integer pageSize, Integer pageIndex,
1010 987
			List<String> propertyPaths) {
1011
		
988

  
1012 989
		return defaultService.listSiblingsOfTaxon(taxonUuid, classificationUuid, pageSize, pageIndex, propertyPaths);
1013 990
	}
1014 991

  
......
1021 998

  
1022 999
	@Override
1023 1000
	public List<Classification> loadByIds(List<Integer> idSet, List<String> propertyPaths) {
1024
		
1001

  
1025 1002
		return defaultService.loadByIds(idSet, propertyPaths);
1026 1003
	}
1027 1004

  
1028 1005
	@Override
1029 1006
	public ClassificationLookupDTO classificationLookup(Classification arg0) {
1030
		
1007

  
1031 1008
		return defaultService.classificationLookup(arg0);
1032 1009
	}
1033 1010

  
1034 1011
	@Override
1035 1012
	public DeleteResult delete(UUID arg0, TaxonDeletionConfigurator arg1) {
1036
		
1013

  
1037 1014
		return defaultService.delete(arg0, arg1);
1038 1015
	}
1039 1016

  
......
1048 1025
		return defaultService.getRootNode(arg0);
1049 1026
	}
1050 1027

  
1028
    /**
1029
     * {@inheritDoc}
1030
     */
1031
    @Override
1032
    public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(
1033
            Classification arg0, List<UUID> arg1) {
1034
        return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(arg0, arg1);
1035
    }
1036

  
1037
    /**
1038
     * {@inheritDoc}
1039
     */
1040
    @Override
1041
    public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(UUID arg0,
1042
            List<UUID> arg1, Integer arg2, String arg3) {
1043
        return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(arg0, arg1, arg2, arg3);
1044
    }
1045

  
1046
    /**
1047
     * {@inheritDoc}
1048
     */
1049
    @Override
1050
    public List<UuidAndTitleCache<TaxonNode>> getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(
1051
            Classification arg0, List<UUID> arg1, Integer arg2, String arg3) {
1052
        return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(arg0, arg1, arg2, arg3);
1053
    }
1054

  
1051 1055

  
1052 1056
}

Also available in: Unified diff