Class FileSettingStore
- All Implemented Interfaces:
- SettingStore
Properties files.- Since:
- 2.0
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThis key (value "org.eclipse.rap.rwt.service.FileSettingStore.dir") can be used to configure the working directory for file settings stores.
- 
Constructor SummaryConstructorsConstructorDescriptionFileSettingStore(File baseDirectory) Creates an empty instance with a random unique ID.
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddSettingStoreListener(SettingStoreListener listener) Attaches the given listener to this setting store.getAttribute(String name) Returns the attribute stored under the specified name in this setting store.Returns anEnumerationof strings with the names of all attributes in this setting store.getId()Returns the unique identifier of this setting store.voidReplaces the contents of this setting store with the persisted contents associated with the given ID.voidremoveAttribute(String name) Removes the attribute stored under the specified name from this setting store.voidRemoves the given listener from this setting store.voidsetAttribute(String name, String value) Stores a given attribute in this setting store, using the name specified.
- 
Field Details- 
FILE_SETTING_STORE_DIRThis key (value "org.eclipse.rap.rwt.service.FileSettingStore.dir") can be used to configure the working directory for file settings stores. SeeFileSettingStoreFactory.- See Also:
 
 
- 
- 
Constructor Details- 
FileSettingStoreCreates an empty instance with a random unique ID. UseloadById(String)to initialize an existing store with previously persisted attributes.- Parameters:
- baseDirectory- an existing directory to persist this store's settings in
- Throws:
- IllegalArgumentException- if the given- workDiris not a directory
- See Also:
 
 
- 
- 
Method Details- 
getIdDescription copied from interface:SettingStoreReturns the unique identifier of this setting store.- Specified by:
- getIdin interface- SettingStore
- Returns:
- a non-empty string, never null
 
- 
getAttributeDescription copied from interface:SettingStoreReturns the attribute stored under the specified name in this setting store.- Specified by:
- getAttributein interface- SettingStore
- Parameters:
- name- a non-null String specifying the name of the attribute
- Returns:
- the attribute stored under the given name or nullif no attribute is stored under that name
 
- 
setAttributeDescription copied from interface:SettingStoreStores a given attribute in this setting store, using the name specified. If an attribute with the same name is already stored in this setting store, the previous value is replaced. The attribute is considered persisted when after this method completes.If the value is null, this has the same effect as callingSettingStore.removeAttribute(String).SettingStoreListeners attached to this instance will be notified after an attribute has been stored.- Specified by:
- setAttributein interface- SettingStore
- Parameters:
- name- the name of the attribute, must not be- nullor empty
- value- the attribute to store, may be- null
- Throws:
- IOException- if the load operation failed to complete normally
 
- 
getAttributeNamesDescription copied from interface:SettingStoreReturns anEnumerationof strings with the names of all attributes in this setting store.- Specified by:
- getAttributeNamesin interface- SettingStore
- Returns:
- an enumeration with the attribute names in this setting store, never null
 
- 
loadByIdDescription copied from interface:SettingStoreReplaces the contents of this setting store with the persisted contents associated with the given ID.The attributes of this setting store will remain associated with the old id, but will be removed from this store instance. SettingStoreListeners attached to this store will receive a notification for each removed attribute.During the load operation this store will be filled with the attributes associated with the new ID. SettingStoreListeners attached to this store will receive a notification for each added attribute.After the load operation this store will only hold attributes associated with the new id value. - Specified by:
- loadByIdin interface- SettingStore
- Parameters:
- id- the ID of the settings to load, must not be- nullor empty
- Throws:
- IOException- if the load operation failed to complete normally
 
- 
removeAttributeDescription copied from interface:SettingStoreRemoves the attribute stored under the specified name from this setting store. If no attribute is stored under the specified name, this method does nothing.SettingStoreListeners attached to this instance will be notified after an attribute has been removed.- Specified by:
- removeAttributein interface- SettingStore
- Parameters:
- name- the name of the attribute to remove, must not be- null
- Throws:
- IOException- if the remove operation failed to complete normally
 
- 
addSettingStoreListenerDescription copied from interface:SettingStoreAttaches the given listener to this setting store. Listeners will be notified of changes in the store. If the listener has already been added to this store, this method does nothing.- Specified by:
- addSettingStoreListenerin interface- SettingStore
- Parameters:
- listener- the listener to add, must not be- null
 
- 
removeSettingStoreListenerDescription copied from interface:SettingStoreRemoves the given listener from this setting store. If the listener has not been added, this method does nothing.- Specified by:
- removeSettingStoreListenerin interface- SettingStore
- Parameters:
- listener- the listener to remove, must not be- null
 
 
-