Package tigase.conf
Class ConfigSQLRepository
- java.lang.Object
-
- tigase.conf.ConfigurationCache
-
- tigase.conf.ConfigSQLRepository
-
- All Implemented Interfaces:
java.lang.Iterable<ConfigItem>,ConfigRepositoryIfc,ComponentRepository<ConfigItem>,Repository
@Deprecated public class ConfigSQLRepository extends ConfigurationCache
Deprecated.Created: Dec 15, 2009 10:44:00 PM- Author:
- Artur Hefczyc
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface tigase.db.Repository
Repository.Meta, Repository.SchemaId
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_REPO_URI_INIT_KEYDeprecated.static java.lang.StringCONFIG_REPO_URI_PROP_KEYDeprecated.-
Fields inherited from class tigase.conf.ConfigurationCache
CONFIG_DUMP_FILE_PROP_DEF, CONFIG_DUMP_FILE_PROP_KEY
-
Fields inherited from interface tigase.db.comp.ComponentRepository
COMP_REPO_BIND
-
Fields inherited from interface tigase.conf.ConfigRepositoryIfc
RELOAD_DELAY, RESOURCE_URI
-
-
Constructor Summary
Constructors Constructor Description ConfigSQLRepository()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddItem(java.lang.String compName, ConfigItem item)Deprecated.java.util.Collection<ConfigItem>allItems()Deprecated.Returns a collection with all items stored in the repository.java.lang.String[]getCompNames()Deprecated.Returns all component names for which there are some configuration settings available.ConfigItemgetItem(java.lang.String compName, java.lang.String node, java.lang.String key)Deprecated.java.util.Set<ConfigItem>getItemsForComponent(java.lang.String compName)Deprecated.Get set of config items stored for componentjava.lang.String[]getKeys(java.lang.String compName, java.lang.String node)Deprecated.Returns an array of all configuration keys for a given component and configuration node.voidinitRepository(java.lang.String repo_uri, java.util.Map<java.lang.String,java.lang.String> params)Deprecated.Method is deprecated and should not be user any more.voidremoveItem(java.lang.String compName, ConfigItem item)Deprecated.intsize()Deprecated.The method returns number of items in the repository.-
Methods inherited from class tigase.conf.ConfigurationCache
addItem, addItem, addItemNoStore, addRepoChangeListener, contains, destroy, get, getDefaults, getDefHostname, getInitProperties, getItem, getItemInstance, getProperties, iterator, putProperties, reload, remove, removeItem, removeItemNoStore, removeRepoChangeListener, set, setAutoloadTimer, setDefHostname, setProperties, store, validateItem
-
-
-
-
Field Detail
-
CONFIG_REPO_URI_PROP_KEY
public static final java.lang.String CONFIG_REPO_URI_PROP_KEY
Deprecated.- See Also:
- Constant Field Values
-
CONFIG_REPO_URI_INIT_KEY
public static final java.lang.String CONFIG_REPO_URI_INIT_KEY
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
addItem
public void addItem(java.lang.String compName, ConfigItem item)Deprecated.- Overrides:
addItemin classConfigurationCache
-
allItems
public java.util.Collection<ConfigItem> allItems() throws TigaseDBException
Deprecated.Description copied from interface:ComponentRepositoryReturns a collection with all items stored in the repository.- Specified by:
allItemsin interfaceComponentRepository<ConfigItem>- Overrides:
allItemsin classConfigurationCache- Throws:
TigaseDBException
-
getCompNames
public java.lang.String[] getCompNames()
Deprecated.Description copied from interface:ConfigRepositoryIfcReturns all component names for which there are some configuration settings available.- Specified by:
getCompNamesin interfaceConfigRepositoryIfc- Overrides:
getCompNamesin classConfigurationCache- Returns:
- array of component names
-
getItem
public ConfigItem getItem(java.lang.String compName, java.lang.String node, java.lang.String key)
Deprecated.- Overrides:
getItemin classConfigurationCache
-
getItemsForComponent
public java.util.Set<ConfigItem> getItemsForComponent(java.lang.String compName)
Deprecated.Description copied from interface:ConfigRepositoryIfcGet set of config items stored for component- Specified by:
getItemsForComponentin interfaceConfigRepositoryIfc- Overrides:
getItemsForComponentin classConfigurationCache- Returns:
- set of component items
-
getKeys
public java.lang.String[] getKeys(java.lang.String compName, java.lang.String node)Deprecated.Description copied from interface:ConfigRepositoryIfcReturns an array of all configuration keys for a given component and configuration node.- Specified by:
getKeysin interfaceConfigRepositoryIfc- Overrides:
getKeysin classConfigurationCache- Returns:
- array of keys for component and node
-
initRepository
public void initRepository(java.lang.String repo_uri, java.util.Map<java.lang.String,java.lang.String> params) throws DBInitExceptionDeprecated.Description copied from interface:RepositoryMethod is deprecated and should not be user any more.
The method is called to initialize the data repository. Depending on the implementation all the initialization parameters can be passed either viaresource_uriparameter as the database connection string or viaparamsmap if the required repository parameters are more complex or both.- Specified by:
initRepositoryin interfaceRepository- Overrides:
initRepositoryin classConfigurationCache- Parameters:
repo_uri- value in most cases representing the database connection string.params- is aMapwith repository properties necessary to initialize and perform all the functions. The initialization parameters are implementation dependent.- Throws:
DBInitException- if there was an error during repository initialization. Some implementations, though, perform so called lazy initialization so even though there is a problem with the underlying repository it may not be signaled through this method call.
-
removeItem
public void removeItem(java.lang.String compName, ConfigItem item)Deprecated.- Overrides:
removeItemin classConfigurationCache
-
size
public int size()
Deprecated.Description copied from interface:ComponentRepositoryThe method returns number of items in the repository.- Specified by:
sizein interfaceComponentRepository<ConfigItem>- Overrides:
sizein classConfigurationCache- Returns:
- an
intvalue with number of items in the repository.
-
-