Projekt

Obecné

Profil

Stáhnout (336 Bajtů) Statistiky
| Větev: | Revize:
1 21d41302 mlinha
package vldc.aswi.service;
2
3
import vldc.aswi.domain.Assembly;
4
5
import java.util.List;
6
7
/**
8
 * Interface for Assembly manager.
9
 */
10
public interface AssemblyManager {
11
12
    /**
13
     * Get all Assemblies from database.
14
     * @return List of assemblies.
15
     */
16
    List<Assembly> getAssemblies();
17 2868bb9a Vojtěch Danišík
18
    Assembly getAssemblyById(Long id);
19 21d41302 mlinha
}