Revision 39e5a6f0
Added by Andreas Müller about 7 years ago
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientAgentService.java | ||
---|---|---|
26 | 26 |
import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase; |
27 | 27 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
28 | 28 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
29 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
29 | 30 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
30 | 31 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
31 | 32 |
import eu.etaxonomy.cdm.model.agent.Address; |
... | ... | |
852 | 853 |
return defaultService.loadByIds(idSet, propertyPaths); |
853 | 854 |
} |
854 | 855 |
|
856 |
@Override |
|
857 |
public <S extends AgentBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
858 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
859 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
860 |
// TODO Auto-generated method stub |
|
861 |
return null; |
|
862 |
} |
|
863 |
|
|
855 | 864 |
|
856 | 865 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientClassificationService.java | ||
---|---|---|
28 | 28 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
29 | 29 |
import eu.etaxonomy.cdm.api.service.config.TaxonDeletionConfigurator; |
30 | 30 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
31 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
31 | 32 |
import eu.etaxonomy.cdm.api.service.dto.GroupedTaxonDTO; |
32 | 33 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
33 | 34 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
... | ... | |
1046 | 1047 |
return defaultService.getTaxonNodeUuidAndTitleCacheOfAcceptedTaxaByClassification(classification, limit, pattern); |
1047 | 1048 |
} |
1048 | 1049 |
|
1050 |
@Override |
|
1051 |
public <S extends Classification> Pager<FindByMarkerDTO<S>> findByMarker( |
|
1052 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
1053 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
1054 |
// TODO Auto-generated method stub |
|
1055 |
return null; |
|
1056 |
} |
|
1057 |
|
|
1049 | 1058 |
|
1050 | 1059 |
|
1051 | 1060 |
|
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientCollectionService.java | ||
---|---|---|
24 | 24 |
import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase; |
25 | 25 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
26 | 26 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
27 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
27 | 28 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
28 | 29 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
29 | 30 |
import eu.etaxonomy.cdm.model.common.Annotation; |
... | ... | |
759 | 760 |
return defaultService.loadByIds(idSet, propertyPaths); |
760 | 761 |
} |
761 | 762 |
|
763 |
@Override |
|
764 |
public <S extends Collection> Pager<FindByMarkerDTO<S>> findByMarker( |
|
765 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
766 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
767 |
// TODO Auto-generated method stub |
|
768 |
return null; |
|
769 |
} |
|
770 |
|
|
762 | 771 |
|
763 | 772 |
|
764 | 773 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientDescriptionService.java | ||
---|---|---|
27 | 27 |
import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase; |
28 | 28 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
29 | 29 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
30 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
30 | 31 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
31 | 32 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
32 | 33 |
import eu.etaxonomy.cdm.model.common.Annotation; |
... | ... | |
1244 | 1245 |
return defaultService.loadByIds(idSet, propertyPaths); |
1245 | 1246 |
} |
1246 | 1247 |
|
1248 |
@Override |
|
1249 |
public <S extends DescriptionBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
1250 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
1251 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
1252 |
// TODO Auto-generated method stub |
|
1253 |
return null; |
|
1254 |
} |
|
1255 |
|
|
1247 | 1256 |
|
1248 | 1257 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientNameService.java | ||
---|---|---|
31 | 31 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
32 | 32 |
import eu.etaxonomy.cdm.api.service.config.NameDeletionConfigurator; |
33 | 33 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
34 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
34 | 35 |
import eu.etaxonomy.cdm.api.service.exception.ReferencedObjectUndeletableException; |
35 | 36 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
36 | 37 |
import eu.etaxonomy.cdm.api.service.search.DocumentSearchResult; |
... | ... | |
48 | 49 |
import eu.etaxonomy.cdm.model.common.ReferencedEntityBase; |
49 | 50 |
import eu.etaxonomy.cdm.model.common.RelationshipBase; |
50 | 51 |
import eu.etaxonomy.cdm.model.common.RelationshipBase.Direction; |
51 |
import eu.etaxonomy.cdm.model.description.DescriptionBase; |
|
52 | 52 |
import eu.etaxonomy.cdm.model.media.Rights; |
53 | 53 |
import eu.etaxonomy.cdm.model.name.HomotypicalGroup; |
54 | 54 |
import eu.etaxonomy.cdm.model.name.HybridRelationship; |
... | ... | |
1233 | 1233 |
|
1234 | 1234 |
@Override |
1235 | 1235 |
public List<TaxonNameBase> loadByIds(List<Integer> idSet, List<String> propertyPaths) { |
1236 |
|
|
1237 | 1236 |
return defaultService.loadByIds(idSet, propertyPaths); |
1238 | 1237 |
} |
1239 | 1238 |
|
1239 |
@Override |
|
1240 |
public <S extends TaxonNameBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
1241 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
1242 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
1243 |
// TODO Auto-generated method stub |
|
1244 |
return null; |
|
1245 |
} |
|
1246 |
|
|
1247 |
|
|
1240 | 1248 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientOccurenceService.java | ||
---|---|---|
35 | 35 |
import eu.etaxonomy.cdm.api.service.config.SpecimenDeleteConfigurator; |
36 | 36 |
import eu.etaxonomy.cdm.api.service.dto.FieldUnitDTO; |
37 | 37 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
38 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
38 | 39 |
import eu.etaxonomy.cdm.api.service.dto.PreservedSpecimenDTO; |
39 | 40 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
40 | 41 |
import eu.etaxonomy.cdm.api.service.search.SearchResult; |
... | ... | |
1110 | 1111 |
return defaultService.loadByIds(idSet, propertyPaths); |
1111 | 1112 |
} |
1112 | 1113 |
|
1114 |
@Override |
|
1115 |
public <S extends SpecimenOrObservationBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
1116 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
1117 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
1118 |
// TODO Auto-generated method stub |
|
1119 |
return null; |
|
1120 |
} |
|
1121 |
|
|
1113 | 1122 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientReferenceService.java | ||
---|---|---|
25 | 25 |
import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase; |
26 | 26 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
27 | 27 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
28 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
28 | 29 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
29 | 30 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
30 | 31 |
import eu.etaxonomy.cdm.model.common.Annotation; |
... | ... | |
778 | 779 |
return defaultService.getUuidAndAbbrevTitleCache(limit, pattern); |
779 | 780 |
} |
780 | 781 |
|
782 |
@Override |
|
783 |
public <S extends Reference> Pager<FindByMarkerDTO<S>> findByMarker( |
|
784 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
785 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
786 |
// TODO Auto-generated method stub |
|
787 |
return null; |
|
788 |
} |
|
789 |
|
|
781 | 790 |
} |
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientTaxonService.java | ||
---|---|---|
54 | 54 |
import eu.etaxonomy.cdm.model.common.Language; |
55 | 55 |
import eu.etaxonomy.cdm.model.common.Marker; |
56 | 56 |
import eu.etaxonomy.cdm.model.common.MarkerType; |
57 |
import eu.etaxonomy.cdm.model.common.OrderedTermVocabulary; |
|
58 | 57 |
import eu.etaxonomy.cdm.model.common.RelationshipBase; |
59 | 58 |
import eu.etaxonomy.cdm.model.common.RelationshipBase.Direction; |
60 | 59 |
import eu.etaxonomy.cdm.model.description.DescriptionElementBase; |
... | ... | |
82 | 81 |
import eu.etaxonomy.cdm.persistence.dao.common.AuditEventSort; |
83 | 82 |
import eu.etaxonomy.cdm.persistence.dto.MergeResult; |
84 | 83 |
import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache; |
85 |
import eu.etaxonomy.cdm.persistence.fetch.CdmFetch; |
|
86 | 84 |
import eu.etaxonomy.cdm.persistence.query.Grouping; |
87 | 85 |
import eu.etaxonomy.cdm.persistence.query.MatchMode; |
88 | 86 |
import eu.etaxonomy.cdm.persistence.query.OrderHint; |
... | ... | |
1507 | 1505 |
|
1508 | 1506 |
@Override |
1509 | 1507 |
public <S extends TaxonBase> Pager<FindByMarkerDTO<S>> findByMarker( |
1510 |
Class<S> arg0, MarkerType arg1, boolean arg2, TaxonNode arg3, |
|
1511 |
boolean arg4, Integer arg5, Integer arg6, List<String> arg7) { |
|
1512 |
return defaultService.findByMarker(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); |
|
1508 |
Class<S> clazz, MarkerType type, Boolean value, TaxonNode subtree, |
|
1509 |
boolean includeEntity, Integer size, Integer limit, List<String> path) { |
|
1510 |
return defaultService.findByMarker(clazz, type, value, subtree, includeEntity, size, limit, path); |
|
1511 |
} |
|
1512 |
|
|
1513 |
@Override |
|
1514 |
public <S extends TaxonBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
1515 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
1516 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
1517 |
// TODO Auto-generated method stub |
|
1518 |
return null; |
|
1513 | 1519 |
} |
1514 | 1520 |
|
1515 | 1521 |
|
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/dataimport/transientServices/TransientTermService.java | ||
---|---|---|
29 | 29 |
import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator; |
30 | 30 |
import eu.etaxonomy.cdm.api.service.config.TermDeletionConfigurator; |
31 | 31 |
import eu.etaxonomy.cdm.api.service.dto.FindByIdentifierDTO; |
32 |
import eu.etaxonomy.cdm.api.service.dto.FindByMarkerDTO; |
|
32 | 33 |
import eu.etaxonomy.cdm.api.service.pager.Pager; |
33 | 34 |
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor; |
34 | 35 |
import eu.etaxonomy.cdm.model.common.Annotation; |
... | ... | |
924 | 925 |
|
925 | 926 |
return defaultService.loadByIds(idSet, propertyPaths); |
926 | 927 |
} |
928 |
|
|
929 |
@Override |
|
930 |
public <S extends DefinedTermBase> Pager<FindByMarkerDTO<S>> findByMarker( |
|
931 |
Class<S> arg0, MarkerType arg1, Boolean arg2, boolean arg3, |
|
932 |
Integer arg4, Integer arg5, List<String> arg6) { |
|
933 |
// TODO Auto-generated method stub |
|
934 |
return null; |
|
935 |
} |
|
927 | 936 |
} |
Also available in: Unified diff
fix transientServices (2)