Projekt

Obecné

Profil

Stáhnout (336 Bajtů) Statistiky
| Větev: | Revize:
1
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

    
18
    Assembly getAssemblyById(Long id);
19
}
(1-1/16)