Interface Storage
-
- All Known Implementing Classes:
DefaultStorageImpl
public interface StorageDefines methods for writing/reading property-files. The implementation defined on thePropertyFileannotation is used by thePropertyManager.Attention: Implementations need a public no-args constructor!
- Since:
- 1.0
- Author:
- Michael Stocker
- See Also:
DefaultStorageImpl for a file-based implementation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidread(Set<PropertyField> properties, Path filePath)voidwrite(Set<PropertyField> properties, Path filePath)
-
-
-
Method Detail
-
write
void write(Set<PropertyField> properties, Path filePath) throws StorageIOException
- Throws:
StorageIOException
-
read
void read(Set<PropertyField> properties, Path filePath) throws StorageIOException
- Throws:
StorageIOException
-
-