Island: Add reset_to_default() to IAgentConfigurationRepository

This commit is contained in:
Mike Salvatore 2022-06-30 10:02:01 -04:00
parent ebaa68ad51
commit aa7509e49f
1 changed files with 9 additions and 0 deletions

View File

@ -28,3 +28,12 @@ class IAgentConfigurationRepository(ABC):
:raises StorageError: If the configuration could not be stored
"""
pass
@abstractmethod
def reset_to_default(self):
"""
Remove any stored configuration from the repository
:raises RemovalError: If the repository could not be reset
"""
pass