Projekt

Obecné

Profil

Stáhnout (293 Bajtů) Statistiky
| Větev: | Revize:
1
package vldc.aswi.service;
2

    
3
import vldc.aswi.domain.Function;
4

    
5
import java.util.List;
6

    
7
/**
8
 * Interface for Function manager.
9
 */
10
public interface FunctionManager {
11

    
12
    /**
13
     * Get all functions from database.
14
     * @return List of functions.
15
     */
16
    List<Function> getFunctions();
17
}
(5-5/16)