| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IFilmsModule |
|
| 1.0;1 |
| 1 | package org.jtheque.films; | |
| 2 | ||
| 3 | import org.jtheque.core.managers.feature.Feature; | |
| 4 | import org.jtheque.films.services.impl.utils.config.Configuration; | |
| 5 | ||
| 6 | /** | |
| 7 | * @author Baptiste Wicht | |
| 8 | */ | |
| 9 | public interface IFilmsModule { | |
| 10 | /** | |
| 11 | * Return the configuration of the module. | |
| 12 | * | |
| 13 | * @return The configuration of the module. | |
| 14 | */ | |
| 15 | Configuration getConfiguration(); | |
| 16 | ||
| 17 | /** | |
| 18 | * Return the films feature. | |
| 19 | * | |
| 20 | * @return The feature for films. | |
| 21 | */ | |
| 22 | Feature getFilmsFeature(); | |
| 23 | ||
| 24 | /** | |
| 25 | * Return the actors feature. | |
| 26 | * | |
| 27 | * @return The feature for actors. | |
| 28 | */ | |
| 29 | Feature getActorsFeature(); | |
| 30 | ||
| 31 | /** | |
| 32 | * Return the realizers feature. | |
| 33 | * | |
| 34 | * @return The feature for realizers. | |
| 35 | */ | |
| 36 | Feature getRealizersFeature(); | |
| 37 | } |