TaxonNodeByNameComparator is not a component anymore and add configurable delete...
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / IMediaService.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.cdm.api.service;
12
13 import java.util.List;
14 import java.util.Set;
15 import java.util.UUID;
16
17 import eu.etaxonomy.cdm.api.service.config.MediaDeletionConfigurator;
18 import eu.etaxonomy.cdm.api.service.pager.Pager;
19 import eu.etaxonomy.cdm.model.description.MediaKey;
20 import eu.etaxonomy.cdm.model.location.NamedArea;
21 import eu.etaxonomy.cdm.model.media.Media;
22 import eu.etaxonomy.cdm.model.media.Rights;
23 import eu.etaxonomy.cdm.model.taxon.Taxon;
24 import eu.etaxonomy.cdm.persistence.dao.initializer.IBeanInitializer;
25 import eu.etaxonomy.cdm.persistence.query.OrderHint;
26
27 public interface IMediaService extends IIdentifiableEntityService<Media> {
28
29 /**
30 * Return a List of MediaKeys, optionally filtered by the parameters passed.
31 *
32 * @param taxonomicScope a Set of Taxon instances that define the taxonomic scope of the key (can be null)
33 * @param geoScopes a Set of NamedArea instances that define the geospatial scope of the key (can be null)
34 * @param pageSize The maximum number of keys returned (can be null for all keys)
35 * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
36 * @param propertyPaths Properties to initialize in the returned entities, following the syntax described in {@link IBeanInitializer#initialize(Object, List)}
37 * @return a Pager containing MediaKey instances
38 */
39 public Pager<MediaKey> getMediaKeys(Set<Taxon> taxonomicScope, Set<NamedArea> geoScopes, Integer pageSize, Integer pageNumber, List<String> propertyPaths);
40
41 /**
42 * Return a Pager of rights belonging to this object
43 *
44 * @param t The media object
45 * @param pageSize The maximum number of rights returned (can be null for all rights)
46 * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
47 * @param propertyPaths properties to initialize - see {@link IBeanInitializer#initialize(Object, List)}
48 * @return a Pager of Rights entities
49 */
50 @Override
51 public Pager<Rights> getRights(Media t, Integer pageSize, Integer pageNumber, List<String> propertyPaths);
52
53 /**
54 * Returns a Paged List of Media instances where the default field matches the String queryString (as interpreted by the Lucene QueryParser)
55 *
56 * @param clazz filter the results by class (or pass null to return all Media instances)
57 * @param queryString
58 * @param pageSize The maximum number of media returned (can be null for all matching media)
59 * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
60 * @param orderHints
61 * Supports path like <code>orderHints.propertyNames</code> which
62 * include *-to-one properties like createdBy.username or
63 * authorTeam.persistentTitleCache
64 * @param propertyPaths properties to be initialized
65 * @return a Pager Media instances
66 * @see <a href="http://lucene.apache.org/java/2_4_0/queryparsersyntax.html">Apache Lucene - Query Parser Syntax</a>
67 */
68 @Override
69 public Pager<Media> search(Class<? extends Media> clazz, String queryString, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);
70
71
72 public DeleteResult delete(UUID mediaUuid, MediaDeletionConfigurator config);
73 }