Package org.ow2.clif.storage.api
Interface StorageAdmin
-
- All Known Implementing Classes:
ConsoleFileStorageImpl
public interface StorageAdminInterface for controlling the storage system- Author:
- Julien Buret, Nicolas Droze, Bruno Dillenseger
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSTORAGE_ADMIN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcollect(java.io.Serializable selBlades, CollectListener listener)Collects the latest test datavoidnewTest(java.io.Serializable testId, java.util.Map<java.lang.String,ClifDeployDefinition> definitions)Informs the storage system about the beginning of a new testvoidterminate()Terminates the storage system
-
-
-
Field Detail
-
STORAGE_ADMIN
static final java.lang.String STORAGE_ADMIN
- See Also:
- Constant Field Values
-
-
Method Detail
-
terminate
void terminate()
Terminates the storage system
-
collect
void collect(java.io.Serializable selBlades, CollectListener listener)Collects the latest test data
-
newTest
void newTest(java.io.Serializable testId, java.util.Map<java.lang.String,ClifDeployDefinition> definitions) throws ClifExceptionInforms the storage system about the beginning of a new test- Parameters:
testId- test identifier objectdefinitions- map of blade deployment definitions, indexed by a unique blade identifier- Throws:
ClifException- See Also:
DeployDefinition
-
-