Interface ConfigurationPersister
-
- All Implemented Interfaces:
public interface ConfigurationPersisterOutput handler contract. Persists any retrieved configuration data
-
-
Method Summary
Modifier and Type Method Description abstract voidpersistConfiguration(@NonNull() JSONObject configuration)Add configuration data to the persistence archive. abstract voidresetPersistedConfiguration()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.
-
-
-
-