ref #7095 Enhance quicker service for taxon associated specimens
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / IOccurrenceService.java
index c172863e0f463335904c07643fe0d74dd9f460d8..40a4d2a503ca54206a25f978f28ef9872a5f40bc 100644 (file)
@@ -1,4 +1,3 @@
-// $Id$\r
 /**\r
 * Copyright (C) 2009 EDIT\r
 * European Distributed Institute of Taxonomy\r
@@ -13,36 +12,52 @@ package eu.etaxonomy.cdm.api.service;
 import java.io.IOException;\r
 import java.util.Collection;\r
 import java.util.List;\r
+import java.util.Map;\r
 import java.util.Set;\r
 import java.util.UUID;\r
 \r
 import org.apache.lucene.index.CorruptIndexException;\r
-import org.apache.lucene.queryParser.ParseException;\r
 import org.hibernate.search.spatial.impl.Rectangle;\r
+import org.springframework.transaction.annotation.Transactional;\r
 \r
 import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;\r
 import eu.etaxonomy.cdm.api.facade.DerivedUnitFacadeNotSupportedException;\r
+import eu.etaxonomy.cdm.api.service.config.FindOccurrencesConfigurator;\r
+import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator;\r
+import eu.etaxonomy.cdm.api.service.config.SpecimenDeleteConfigurator;\r
+import eu.etaxonomy.cdm.api.service.dto.FieldUnitDTO;\r
+import eu.etaxonomy.cdm.api.service.dto.PreservedSpecimenDTO;\r
 import eu.etaxonomy.cdm.api.service.pager.Pager;\r
+import eu.etaxonomy.cdm.api.service.search.LuceneParseException;\r
 import eu.etaxonomy.cdm.api.service.search.SearchResult;\r
 import eu.etaxonomy.cdm.api.service.util.TaxonRelationshipEdge;\r
 import eu.etaxonomy.cdm.model.common.Language;\r
-import eu.etaxonomy.cdm.model.common.UuidAndTitleCache;\r
 import eu.etaxonomy.cdm.model.description.DescriptionBase;\r
+import eu.etaxonomy.cdm.model.description.DescriptionElementBase;\r
 import eu.etaxonomy.cdm.model.description.IndividualsAssociation;\r
 import eu.etaxonomy.cdm.model.description.TaxonDescription;\r
 import eu.etaxonomy.cdm.model.location.Country;\r
 import eu.etaxonomy.cdm.model.media.Media;\r
+import eu.etaxonomy.cdm.model.molecular.DnaSample;\r
+import eu.etaxonomy.cdm.model.molecular.Sequence;\r
 import eu.etaxonomy.cdm.model.name.HomotypicalGroup;\r
 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation;\r
+import eu.etaxonomy.cdm.model.name.TaxonName;\r
 import eu.etaxonomy.cdm.model.occurrence.DerivationEvent;\r
 import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;\r
 import eu.etaxonomy.cdm.model.occurrence.DeterminationEvent;\r
 import eu.etaxonomy.cdm.model.occurrence.FieldUnit;\r
+import eu.etaxonomy.cdm.model.occurrence.GatheringEvent;\r
+import eu.etaxonomy.cdm.model.occurrence.MediaSpecimen;\r
 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;\r
+import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationType;\r
 import eu.etaxonomy.cdm.model.taxon.Taxon;\r
 import eu.etaxonomy.cdm.model.taxon.TaxonBase;\r
+import eu.etaxonomy.cdm.model.taxon.TaxonNode;\r
 import eu.etaxonomy.cdm.model.taxon.TaxonRelationship;\r
 import eu.etaxonomy.cdm.persistence.dao.initializer.IBeanInitializer;\r
+import eu.etaxonomy.cdm.persistence.dto.SpecimenNodeWrapper;\r
+import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache;\r
 import eu.etaxonomy.cdm.persistence.query.OrderHint;\r
 \r
 /**\r
@@ -58,7 +73,9 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
     /**\r
      * Returns a paged list of occurrences that have been determined to belong\r
      * to the taxon concept determinedAs, optionally restricted to objects\r
-     * belonging to a class that that extends SpecimenOrObservationBase.\r
+     * belonging to a class that that extends SpecimenOrObservationBase. This\r
+     * will also consider specimens that are determined as a taxon concept\r
+     * belonging to the synonymy of the given taxon concept.\r
      * <p>\r
      * In contrast to {@link #listByAnyAssociation(Class, Taxon, List)} this\r
      * method only takes SpecimenOrObservationBase instances into account which\r
@@ -88,6 +105,39 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
      */\r
     public Pager<SpecimenOrObservationBase> list(Class<? extends SpecimenOrObservationBase> type, TaxonBase determinedAs, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
 \r
+    /**\r
+     * Returns a paged list of occurrences that have been determined to belong\r
+     * to the taxon name determinedAs, optionally restricted to objects\r
+     * belonging to a class that that extends SpecimenOrObservationBase.\r
+     * <p>\r
+     * In contrast to {@link #listByAnyAssociation(Class, Taxon, List)} this\r
+     * method only takes SpecimenOrObservationBase instances into account which\r
+     * are actually determined as the taxon specified by\r
+     * <code>determinedAs</code>.\r
+     *\r
+     * @param type\r
+     *            The type of entities to return (can be null to count all\r
+     *            entities of type <T>)\r
+     * @param determinedAs\r
+     *            the taxon name that the occurrences have been determined to\r
+     *            belong to\r
+     * @param pageSize\r
+     *            The maximum number of objects returned (can be null for all\r
+     *            matching objects)\r
+     * @param pageNumber\r
+     *            The offset (in pageSize chunks) from the start of the result\r
+     *            set (0 - based, can be null, equivalent of starting at the\r
+     *            beginning of the recordset)\r
+     * @param orderHints\r
+     *            Supports path like <code>orderHints.propertyNames</code> which\r
+     *            include *-to-one properties like createdBy.username or\r
+     *            authorTeam.persistentTitleCache\r
+     * @param propertyPaths\r
+     *            properties to be initialized\r
+     * @return\r
+     */\r
+    public Pager<SpecimenOrObservationBase> list(Class<? extends SpecimenOrObservationBase> type, TaxonName determinedAs, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
     /**\r
      * Returns a List of Media that are associated with a given occurence\r
      *\r
@@ -99,6 +149,26 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
      */\r
     public Pager<Media> getMedia(SpecimenOrObservationBase occurence, Integer pageSize, Integer pageNumber, List<String> propertyPaths);\r
 \r
+    /**\r
+     * Returns all media attached to this occurence and its children. Also takes\r
+     * {@link MediaSpecimen} and molecular images into account.\r
+     *\r
+     * @param occurence the occurence and its children from which the media to get\r
+     * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)\r
+     * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}\r
+     * @return a Pager of media instances\r
+     */\r
+    public Pager<Media> getMediainHierarchy(SpecimenOrObservationBase rootOccurence, Integer pageSize, Integer pageNumber, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Returns a count of determinations that have been made for a given occurence and for a given taxon concept\r
+     *\r
+     * @param occurence the occurence associated with these determinations (can be null for all occurrences)\r
+     * @param taxonbase the taxon concept associated with these determinations (can be null for all taxon concepts)\r
+     * @return a count of determination events\r
+     */\r
+    public int countDeterminations(SpecimenOrObservationBase occurence,TaxonBase taxonbase);\r
+\r
     /**\r
      * Returns a List of determinations that have been made for a given occurence\r
      *\r
@@ -150,7 +220,7 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
      * {@link DerivedUnit}s found in the data base.\r
      * @return a list of {@link UuidAndTitleCache}\r
      */\r
-    public List<UuidAndTitleCache<DerivedUnit>> getDerivedUnitUuidAndTitleCache();\r
+    public List<UuidAndTitleCache<DerivedUnit>> getDerivedUnitUuidAndTitleCache(Integer limit, String pattern);\r
 \r
     public DerivedUnitFacade getDerivedUnitFacade(DerivedUnit derivedUnit, List<String> propertyPaths) throws DerivedUnitFacadeNotSupportedException;\r
 \r
@@ -190,6 +260,69 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
     public <T extends SpecimenOrObservationBase> List<T> listByAssociatedTaxon(Class<T> type, Set<TaxonRelationshipEdge> includeRelationships,\r
             Taxon associatedTaxon, Integer maxDepth, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);\r
 \r
+    /**\r
+     * The method will search for specimen associated with the taxon nodes.<br>\r
+     * It will search for 3 possible association types: <br>\r
+     * - via IndividualAssociations of the taxon<br>\r
+     *  - via TypeDesignations of the taxon name<br>\r
+     *  - via Determinations of the taxon or taxon name<br>\r
+     * <br>\r
+     * more are covered in\r
+     * {@link IOccurrenceService#findByTitle(IIdentifiableEntityServiceConfigurator)}\r
+     * @param taxonNodeUuids\r
+     *            a list of {@link UUID}s of the taxon nodes\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @return a list of {@link SpecimenNodeWrapper} containing the\r
+     *         {@link TaxonNode} and the corresponding {@link UuidAndTitleCache}\r
+     *         object for the specimen found for this taxon node\r
+     */\r
+    public List<SpecimenNodeWrapper> listUuidAndTitleCacheByAssociatedTaxon(List<UUID> taxonNodeUuids,\r
+            Integer limit, Integer start, List<OrderHint> orderHints);\r
+\r
+\r
+    /**\r
+     * Lists all instances of {@link FieldUnit} which are\r
+     * associated <b>directly or indirectly</b>with the <code>taxon</code> specified\r
+     * as parameter. "Indirectly" means that a sub derivate of the FieldUnit is\r
+     * directly associated with the given taxon.\r
+     * SpecimenOrObservationBase instances can be associated to taxa in multiple\r
+     * ways, all these possible relations are taken into account:\r
+     * <ul>\r
+     * <li>The {@link IndividualsAssociation} elements in a\r
+     * {@link TaxonDescription} contain {@link DerivedUnit}s</li>\r
+     * <li>{@link SpecimenTypeDesignation}s may be associated with any\r
+     * {@link HomotypicalGroup} related to the specific {@link Taxon}.</li>\r
+     * <li>A {@link Taxon} may be referenced by the {@link DeterminationEvent}\r
+     * of the {@link SpecimenOrObservationBase}</li>\r
+     * </ul>\r
+     * Further more there also can be taxa which are associated with the taxon\r
+     * in question (parameter associatedTaxon) by {@link TaxonRelationship}s. If\r
+     * the parameter <code>includeRelationships</code> is containing elements,\r
+     * these according {@TaxonRelationshipType}s and\r
+     * directional information will be used to collect further\r
+     * {@link SpecimenOrObservationBase} instances found this way.\r
+     *\r
+     * @param <T>\r
+     * @param type\r
+     * @param associatedTaxon\r
+     * @param Set<TaxonRelationshipVector> includeRelationships. TaxonRelationships will not be taken into account if this is <code>NULL</code>.\r
+     * @param maxDepth TODO\r
+     * @param pageSize\r
+     * @param pageNumber\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return\r
+     */\r
+    public Collection<SpecimenOrObservationBase> listFieldUnitsByAssociatedTaxon(Taxon associatedTaxon, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * See {@link #listFieldUnitsByAssociatedTaxon(Set, Taxon, Integer, Integer, Integer, List, List)}\r
+     */\r
+    public Pager<SpecimenOrObservationBase> pageFieldUnitsByAssociatedTaxon(Set<TaxonRelationshipEdge> includeRelationships,\r
+            Taxon associatedTaxon, Integer maxDepth, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
     /**\r
      * See {@link #listByAssociatedTaxon(Class, Set, Taxon, Integer, Integer, Integer, List, List)}\r
      *\r
@@ -207,11 +340,13 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
             Taxon associatedTaxon, Integer maxDepth, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);\r
 \r
     /**\r
-     * Retrieves all {@link FieldUnit}s for the {@link DerivedUnit} with the given {@link UUID}.<br>\r
-     * @param derivedUnitUuid the UUID of the derived unit\r
-     * @return a collection of FieldUnits this DerivedUnit was derived from or an empty collection if no FieldUnits were found\r
+     * Retrieves all {@link FieldUnit}s for the {@link SpecimenOrObservationBase} with the given {@link UUID}.<br>\r
+     * @param specimenUuid the UUID of the specimen\r
+     * @param propertyPaths the property path\r
+     * @return either a collection of FieldUnits this specimen was derived from, the FieldUnit itself\r
+     * if this was a FieldUnit or an empty collection if no FieldUnits were found\r
      */\r
-    public Collection<FieldUnit> getFieldUnits(UUID derivedUnitUuid);\r
+    public Collection<FieldUnit> getFieldUnits(UUID specimenUuid, List<String> propertyPaths);\r
 \r
     /**\r
      * @param clazz\r
@@ -228,9 +363,9 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
      * @throws ParseException\r
      */\r
     Pager<SearchResult<SpecimenOrObservationBase>> findByFullText(Class<? extends SpecimenOrObservationBase> clazz,\r
-            String queryString, Rectangle boundingBox, List<Language> languages, boolean highlightFragments, Integer pageSize,\r
-            Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths) throws CorruptIndexException,\r
-            IOException, ParseException;\r
+            String queryString, Rectangle boundingBox, List<Language> languages, boolean highlightFragments,\r
+            Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths)\r
+            throws IOException, LuceneParseException;\r
     /**\r
      * See {@link #listByAssociatedTaxon(Class, Set, String, Integer, Integer, Integer, List, List)}\r
      *\r
@@ -247,5 +382,281 @@ public interface IOccurrenceService extends IIdentifiableEntityService<SpecimenO
     public <T extends SpecimenOrObservationBase> Pager<T>  pageByAssociatedTaxon(Class<T> type, Set<TaxonRelationshipEdge> includeRelationships,\r
             String taxonUUID, Integer maxDepth, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);\r
 \r
+    /**\r
+     * Moves the given {@link Sequence} from one {@link DnaSample} to another\r
+     * @param from the DnaSample from which the sequence will be removed\r
+     * @param to the DnaSample which to which the sequence will be added\r
+     * @param sequence the Sequence to move\r
+     * @return <code>true</code> if successfully moved, <code>false</code> otherwise\r
+     */\r
+    public UpdateResult moveSequence(DnaSample from, DnaSample to, Sequence sequence);\r
+\r
+\r
+    /**\r
+     * @param fromUuid\r
+     * @param toUuid\r
+     * @param sequenceUuid\r
+     * @return\r
+     */\r
+    public UpdateResult moveSequence(UUID fromUuid, UUID toUuid, UUID sequenceUuid);\r
+\r
+    /**\r
+     * Moves the given {@link DerivedUnit} from one {@link SpecimenOrObservationBase} to another.\r
+     * @param from the SpecimenOrObservationBase from which the DerivedUnit will be removed\r
+     * @param to the SpecimenOrObservationBase to which the DerivedUnit will be added\r
+     * @param derivate the DerivedUnit to move\r
+     * @return <code>true</code> if successfully moved, <code>false</code> otherwise\r
+     */\r
+    public UpdateResult moveDerivate(UUID specimenFromUuid, UUID specimenToUuid, UUID derivateUuid);\r
+\r
+    /**\r
+     * @param from\r
+     * @param to\r
+     * @param derivate\r
+     * @return\r
+     */\r
+    public boolean moveDerivate(SpecimenOrObservationBase<?> from, SpecimenOrObservationBase<?> to, DerivedUnit derivate);\r
+\r
+    /**\r
+     * Assembles a {@link FieldUnitDTO} for the given field unit uuid which is associated to the {@link Taxon}.<br>\r
+     * <br>\r
+     * For the meaning of "associated" see also {@link #listFieldUnitsByAssociatedTaxon(Set, Taxon, Integer, Integer, Integer, List, List)}\r
+     * @param fieldUnit\r
+     * @param associatedTaxonUuid\r
+     * @return a DTO with all the assembled information\r
+     */\r
+    public FieldUnitDTO assembleFieldUnitDTO(FieldUnit fieldUnit, UUID associatedTaxonUuid);\r
+\r
+    /**\r
+     * Assembles a {@link PreservedSpecimenDTO} for the given derived unit.\r
+     * @param derivedUnit\r
+     * @return a DTO with all the assembled information\r
+     */\r
+    public PreservedSpecimenDTO assemblePreservedSpecimenDTO(DerivedUnit derivedUnit);\r
+\r
+    /**\r
+     * Deletes the specified specimen according to the setting in the {@link SpecimenDeleteConfigurator}.<br>\r
+     * @param specimen the specimen which shoul be deleted\r
+     * @param config specifies options if and how the specimen should be deleted like e.g. including all\r
+     * of its children\r
+     * @return the {@link DeleteResult} which holds information about the outcome of this operation\r
+     */\r
+    public DeleteResult delete(SpecimenOrObservationBase<?> specimen, SpecimenDeleteConfigurator config);\r
+\r
+    /**\r
+     * Deletes the specified specimen belonging to the given {@link UUID}\r
+     * according to the setting in the {@link SpecimenDeleteConfigurator}.\r
+     *\r
+     * @param specimen\r
+     *            the specimen which shoul be deleted\r
+     * @param config\r
+     *            specifies options if and how the specimen should be deleted\r
+     *            like e.g. including all of its children\r
+     * @return the {@link DeleteResult} which holds information about the\r
+     *         outcome of this operation\r
+     */\r
+    public DeleteResult delete(UUID specimenUuid, SpecimenDeleteConfigurator config);\r
+\r
+    /**\r
+     * Retrieves all {@link IndividualsAssociation} with the given specimen.<br>\r
+     * @param specimen the specimen for which the associations are retrieved\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return collection of all associations\r
+     */\r
+    public Collection<IndividualsAssociation> listIndividualsAssociations(SpecimenOrObservationBase<?> specimen, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+\r
+    /**\r
+     * Retrieves all taxa linked via {@link IndividualsAssociation} with the given specimen.<br>\r
+     * @param specimen the specimen which is linked to the taxa\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return a collection of associated taxa\r
+     */\r
+    public Collection<TaxonBase<?>> listIndividualsAssociationTaxa(SpecimenOrObservationBase<?> specimen, Integer limit,\r
+            Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all associated taxa for the given specimen (via type designations, determination, individuals associations)\r
+     * @param specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return\r
+     */\r
+    public Collection<TaxonBase<?>> listAssociatedTaxa(SpecimenOrObservationBase<?> specimen, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all taxa that the given specimen is determined as\r
+     * @param specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return collection of all taxa the given specimen is determined as\r
+     */\r
+    public Collection<TaxonBase<?>> listDeterminedTaxa(SpecimenOrObservationBase<?> specimen, Integer limit, Integer start,\r
+            List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all {@link DeterminationEvent}s which have the given specimen set as identified unit.\r
+     * @param specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return collection of all determination events with the given specimen\r
+     */\r
+    public Collection<DeterminationEvent> listDeterminationEvents(SpecimenOrObservationBase<?> specimen, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all taxa with a {@link SpecimenTypeDesignation} with the given specimen as a type specimen.\r
+     * @param specimen the type specimen\r
+     * @param specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return a collection of all taxa where the given specimen is the type specimen\r
+     */\r
+    public Collection<TaxonBase<?>> listTypeDesignationTaxa(DerivedUnit specimen, Integer limit,\r
+            Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all {@link SpecimenTypeDesignation}s which have the given specimens as a type specimen.\r
+     * @param specimens the type specimens\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return map of all designations with the given type specimens\r
+     */\r
+    public Map<DerivedUnit, Collection<SpecimenTypeDesignation>> listTypeDesignations(Collection<DerivedUnit> specimens, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all {@link SpecimenTypeDesignation}s which have the given specimen as a type specimen.\r
+     * @param specimen the type specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return collection of all designations with the given type specimen\r
+     */\r
+    public Collection<SpecimenTypeDesignation> listTypeDesignations(DerivedUnit specimen, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Retrieves all {@link DescriptionBase}s that have the given specimen set as described specimen.\r
+     * @param specimen the described specimen\r
+     * @param limit\r
+     * @param start\r
+     * @param orderHints\r
+     * @param propertyPaths\r
+     * @return collection of all descriptions with the given described specimen\r
+     */\r
+    public Collection<DescriptionBase<?>> listDescriptionsWithDescriptionSpecimen(SpecimenOrObservationBase<?> specimen, Integer limit, Integer start, List<OrderHint> orderHints, List<String> propertyPaths);\r
+\r
+    /**\r
+     * Gets all description elements that are used for describing the character\r
+     * states of the given specimen\r
+     *\r
+     * @param specimen\r
+     *            the specimen for which the character state description\r
+     *            elements should be retrieved\r
+     * @return a collection of all character state description elements for this\r
+     *         specimen\r
+     */\r
+    public Collection<DescriptionElementBase> getCharacterDataForSpecimen(SpecimenOrObservationBase<?> specimen);\r
+\r
+    /**\r
+     * Gets all description elements that are used for describing the character\r
+     * states of the given specimen\r
+     *\r
+     * @param specimenUuid\r
+     *            the specimen {@link UUID} for which the character state description\r
+     *            elements should be retrieved\r
+     * @return a collection of all character state description elements for this\r
+     *         specimen\r
+     */\r
+    public Collection<DescriptionElementBase> getCharacterDataForSpecimen(UUID specimenUuid);\r
+\r
+    /**\r
+     * Returns the most significant identifier for the given {@link DerivedUnit}.\r
+     * @param derivedUnit the derived unit to check\r
+     * @return the identifier string\r
+     */\r
+    public String getMostSignificantIdentifier(DerivedUnit derivedUnit);\r
+\r
+    /**\r
+     * Returns the number of specimens that match the given parameters\r
+     * <br>\r
+     * <b>NOTE - issue #6484:</b> the parameters {@link FindOccurrencesConfigurator#getAssignmentStatus()}\r
+     * and {@link FindOccurrencesConfigurator#isRetrieveIndirectlyAssociatedSpecimens()} are not evaluated\r
+     * in the count method\r
+     * @param clazz the class to match\r
+     * @param queryString the queryString to match\r
+     * @param type the {@link SpecimenOrObservationType} to match\r
+     * @param associatedTaxon the taxon these specimens are in any way associated to via\r
+     * determination, type designations, individuals associations, etc.\r
+     * @param matchmode determines how the query string should be matched\r
+     * @param limit\r
+     *            the maximum number of entities returned (can be null to return\r
+     *            all entities)\r
+     * @param start\r
+     * @param orderHints\r
+     *            Supports path like <code>orderHints.propertyNames</code> which\r
+     *            include *-to-one properties like createdBy.username or\r
+     *            authorTeam.persistentTitleCache\r
+     * @return the number of found specimens\r
+     */\r
+    public int countOccurrences(IIdentifiableEntityServiceConfigurator<SpecimenOrObservationBase> config);\r
+\r
+    /**\r
+     * Return the all {@link SpecimenOrObservationBase}s of the complete\r
+     * derivative hierarchy i.e. all parent and child derivatives and the given\r
+     * specimen itself.\r
+     *\r
+     * @param specimen\r
+     *            a specimen or observation\r
+     * @return the derivative hierarchy as an unordered list of all specimens or observation\r
+     */\r
+    public List<SpecimenOrObservationBase<?>> getAllHierarchyDerivatives(SpecimenOrObservationBase<?> specimen);\r
+\r
+    /**\r
+     * Returns all child derivatives of the given specimen.\r
+     * @param specimen a specimen or observation\r
+     * @return an unordered list of all child derivatives\r
+     */\r
+    public List<DerivedUnit> getAllChildDerivatives(SpecimenOrObservationBase<?> specimen);\r
+\r
+    /**\r
+     * Returns all child derivatives of the given specimen.\r
+     * @param specimen the UUID of a specimen or observation\r
+     * @return an unordered list of all child derivatives\r
+     */\r
+    public List<DerivedUnit> getAllChildDerivatives(UUID specimenUuid);\r
+\r
+    /**\r
+     * Returns all {@link FieldUnit}s that are referencing this {@link GatheringEvent}\r
+     * @param gatheringEventUuid the {@link UUID} of the gathering event\r
+     * @return a list of field units referencing the gathering event\r
+     */\r
+    public List<FieldUnit> getFieldUnitsForGatheringEvent(UUID gatheringEventUuid);\r
+\r
+\r
+    /**\r
+     * Returns a list of {@link UuidAndTitleCache} for the specimens found with the\r
+     * given configurator\r
+     * @param config the configurator for the search\r
+     * @return a list of UuidAndTitleCache object\r
+     */\r
+    @Transactional(readOnly = true)\r
+    public Pager<UuidAndTitleCache<SpecimenOrObservationBase>> findByTitleUuidAndTitleCache(\r
+            FindOccurrencesConfigurator config);\r
 \r
 }\r