public interface PreferencesStore
| Modifier and Type | Method and Description |
|---|---|
Preferences |
createPreferences(String owner,
String name)
Creates Preferences and stores it in the persistent store.
|
Preferences |
getPreferences(String owner,
String name)
Gets the Preferences for the specified owner and name.
|
void |
removePreferences(String owner,
String name)
Removes Preferences from the persistent store.
|
void |
storePreferences(Preferences preferences)
Stores new Preferences or updates existing Preferences.
|
Preferences getPreferences(String owner, 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(String owner, String name)
owner - The owner of the Preferences to remove.name - The name of the Preferences to remove.Preferences createPreferences(String owner, String name)
owner - The owner of the Preferences to create.name - The name of the Preferences to create.Copyright © 2014 Jasig. All Rights Reserved.