| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ResourceImporter |
|
| 1.0;1 |
| 1 | package org.jbehave.core.io.rest; | |
| 2 | ||
| 3 | /** | |
| 4 | * Imports a resource index retrieved from the REST root URI. Each implementation | |
| 5 | * can import to different target systems, e.g. a filesystem. | |
| 6 | * | |
| 7 | * @author Mauro Talevi | |
| 8 | */ | |
| 9 | public interface ResourceImporter { | |
| 10 | ||
| 11 | void importResources(String rootURI); | |
| 12 | ||
| 13 | } |