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