Projekt

Obecné

Profil

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

    
3

    
4
import vldc.aswi.domain.Configuration;
5

    
6
import java.util.List;
7

    
8
/**
9
 * Interface for Configuration manager.
10
 */
11
public interface ConfigurationManager {
12

    
13
    /**
14
     * Get all configurations from database.
15
     * @return List of configurations.
16
     */
17
    List<Configuration> getConfigurations();
18
}
(3-3/16)