Definition of an interface that allows customization of read and write operations.
For reading and writing properties files the inner classes PropertiesReader
and PropertiesWriter
are used. This interface defines factory methods for creating both a PropertiesReader
and a PropertiesWriter
. An object implementing this interface can be passed to the setIOFactory()
method of PropertiesConfiguration
. Every time the configuration is read or written the IOFactory
is asked to create the appropriate reader or writer object. This provides an opportunity to inject custom reader or writer implementations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|