Package tigase.server.ext
Class CompConfigRepository
- java.lang.Object
-
- tigase.db.comp.ConfigRepository<CompRepoItem>
-
- tigase.server.ext.CompConfigRepository
-
- All Implemented Interfaces:
java.lang.Iterable<CompRepoItem>,ComponentRepository<CompRepoItem>,Repository,Initializable,UnregisterAware
@Deprecated public class CompConfigRepository extends ConfigRepository<CompRepoItem>
Deprecated.Created: Oct 3, 2009 2:00:30 PM- Author:
- Artur Hefczyc
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface tigase.db.Repository
Repository.Meta, Repository.SchemaId
-
-
Field Summary
-
Fields inherited from class tigase.db.comp.ConfigRepository
autoReloadInterval, items, itemsHash
-
Fields inherited from interface tigase.db.comp.ComponentRepository
COMP_REPO_BIND
-
-
Constructor Summary
Constructors Constructor Description CompConfigRepository()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddestroy()Deprecated.Method destroys this instance of ComponentRepository releasing resources allocated for this instance of ComponentRepository if possiblejava.lang.StringgetConfigKey()Deprecated.java.lang.String[]getDefaultPropetyItems()Deprecated.CompRepoItemgetItemInstance()Deprecated.Creates a new, uninitialized instance of the repository Item.java.lang.StringgetPropertyKey()Deprecated.voidinitRepository(java.lang.String resource_uri, java.util.Map<java.lang.String,java.lang.String> params)Deprecated.java.lang.StringvalidateItem(CompRepoItem item)Deprecated.Performs Item validation to check whether it meets the repository policy.-
Methods inherited from class tigase.db.comp.ConfigRepository
addItem, addItemNoStore, addRepoChangeListener, allItems, beforeUnregister, contains, getDefaultItems, getDefaults, getItem, getItemsOld, initialize, initItemsMap, isInitialized, itemChanged, iterator, reload, removeItem, removeItemNoStore, removeRepoChangeListener, setAutoloadTimer, setAutoReloadInterval, setItemsOld, setProperties, size, store, toString
-
-
-
-
Method Detail
-
destroy
public void destroy()
Deprecated.Description copied from interface:ComponentRepositoryMethod destroys this instance of ComponentRepository releasing resources allocated for this instance of ComponentRepository if possible
-
getDefaultPropetyItems
public java.lang.String[] getDefaultPropetyItems()
Deprecated.- Overrides:
getDefaultPropetyItemsin classConfigRepository<CompRepoItem>
-
getPropertyKey
public java.lang.String getPropertyKey()
Deprecated.- Specified by:
getPropertyKeyin classConfigRepository<CompRepoItem>
-
getConfigKey
public java.lang.String getConfigKey()
Deprecated.- Specified by:
getConfigKeyin classConfigRepository<CompRepoItem>
-
getItemInstance
public CompRepoItem getItemInstance()
Deprecated.Description copied from interface:ComponentRepositoryCreates a new, uninitialized instance of the repository Item.- Returns:
- a new, uninitialized instance of the repository Item.
-
initRepository
@Deprecated public void initRepository(java.lang.String resource_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.- Parameters:
resource_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.
-
validateItem
public java.lang.String validateItem(CompRepoItem item)
Deprecated.Description copied from interface:ComponentRepositoryPerforms Item validation to check whether it meets the repository policy. If validation is successful the method returnsnull, otherwise it returns an error description.- Specified by:
validateItemin interfaceComponentRepository<CompRepoItem>- Overrides:
validateItemin classConfigRepository<CompRepoItem>- Parameters:
item- is anItemobject to perform validation checking upon.- Returns:
nullon success and an error message otherwise.
-
-