Interface ConfigurationPersister
-
- All Implemented Interfaces:
public interface ConfigurationPersister
Output handler contract. Persists any retrieved configuration data
-
-
Method Summary
Modifier and Type Method Description abstract void
persistConfiguration(@NonNull() JSONObject configuration)
Add configuration data to the persistence archive. abstract void
resetPersistedConfiguration()
Clear any persisted data. -
-
Method Detail
-
persistConfiguration
abstract void persistConfiguration(@NonNull() JSONObject configuration)
Add configuration data to the persistence archive.
- Parameters:
configuration
- JSONObject containing the configuration data that was returned by the provider
-
resetPersistedConfiguration
abstract void resetPersistedConfiguration()
Clear any persisted data.
-
-
-
-