Projekt

Obecné

Profil

Stáhnout (492 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
package cz.zcu.kiv.backendapi.external;
2

    
3
import java.util.List;
4

    
5
/**
6
 * External catalog service interface
7
 */
8
public interface IExternalCatalogItemService {
9
    /**
10
     * Updates external catalog
11
     */
12
    void updateCatalog();
13

    
14
    /**
15
     * Returns external catalog items satisfying given filter
16
     *
17
     * @param name name
18
     * @return list of external catalog items satisfying given filter
19
     */
20
    List<ExternalCatalogItem> getCatalog(String name, ExternalSource source);
21
}
(6-6/7)