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