public interface PreferencesStore
| Modifier and Type | Method and Description |
|---|---|
Preferences |
createPreferences(java.lang.String owner,
java.lang.String name)
Creates Preferences and stores it in the persistent store.
|
Preferences |
getPreferences(java.lang.String owner,
java.lang.String name)
Gets the Preferences for the specified owner and name.
|
void |
removePreferences(java.lang.String owner,
java.lang.String name)
Removes Preferences from the persistent store.
|
void |
storePreferences(Preferences preferences)
Stores new Preferences or updates existing Preferences.
|
Preferences getPreferences(java.lang.String owner, java.lang.String name)
owner - The owner of the Preferences to retreive.name - The name of the Preferences to retrieve.void storePreferences(Preferences preferences)
preferences - The Preferences to persist.void removePreferences(java.lang.String owner,
java.lang.String name)
owner - The owner of the Preferences to remove.name - The name of the Preferences to remove.Preferences createPreferences(java.lang.String owner, java.lang.String name)
owner - The owner of the Preferences to create.name - The name of the Preferences to create.Copyright © 2023 Apereo. All Rights Reserved.