Package org.nuiton.config.plugin.io
Interface ConfigModelIO
-
- All Known Implementing Classes:
ConfigModelIOIniImpl
,ConfigModelIOTomlImpl
,ConfigModelIOYamlImpl
public interface ConfigModelIO
Perform IO operations onConfigModel
. Created on 02/10/16.- Since:
- 3.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigModel
read(Path path)
void
write(ConfigModel model, Path path)
-
-
-
Method Detail
-
read
ConfigModel read(Path path) throws ReadConfigModelException
- Throws:
ReadConfigModelException
-
write
void write(ConfigModel model, Path path) throws WriteConfigModelException
- Throws:
WriteConfigModelException
-
-