Package tigase.cluster.repo
Class ClConConfigRepository
- java.lang.Object
-
- tigase.db.comp.ConfigRepository<ClusterRepoItem>
-
- tigase.cluster.repo.ClConConfigRepository
-
- All Implemented Interfaces:
java.lang.Iterable<ClusterRepoItem>,ComponentRepository<ClusterRepoItem>,Repository,Initializable,UnregisterAware,ShutdownHook
- Direct Known Subclasses:
ClConDirRepository,ClConSQLRepository
@ConfigAliases(@ConfigAlias(field="items",alias="cluster-nodes")) public class ClConConfigRepository extends ConfigRepository<ClusterRepoItem> implements ShutdownHook, Initializable, UnregisterAware
- Version:
- 5.2.0, 13/03/09
- 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 protected booleanauto_remove_obsolete_itemsprotected booleanfirstLoadDoneprotected longlastReloadTimeprotected longlastReloadTimeFactor-
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 ClConConfigRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidbeforeUnregister()Method called before bean unregister.voiddestroy()Method destroys this instance of ComponentRepository releasing resources allocated for this instance of ComponentRepository if possiblejava.lang.StringgetConfigKey()java.lang.String[]getDefaultPropetyItems()ClusterRepoItemgetItemInstance()Creates a new, uninitialized instance of the repository Item.java.lang.StringgetName()java.lang.StringgetPropertyKey()voidinitialize()Method will be called, when bean will be created, configured and ready to use.voidinitRepository(java.lang.String resource_uri, java.util.Map<java.lang.String,java.lang.String> params)Deprecated.booleanitemChanged(ClusterRepoItem oldItem, ClusterRepoItem newItem)voiditemLoaded(ClusterRepoItem item)voidreload()This method is called to reload items from the database or other permanent storage.protected voidremoveObsoloteItems(long factor)java.lang.Stringshutdown()voidstoreItem(ClusterRepoItem item)-
Methods inherited from class tigase.db.comp.ConfigRepository
addItem, addItemNoStore, addRepoChangeListener, allItems, contains, getDefaultItems, getDefaults, getItem, getItemsOld, initItemsMap, isInitialized, iterator, removeItem, removeItemNoStore, removeRepoChangeListener, setAutoloadTimer, setAutoReloadInterval, setItemsOld, setProperties, size, store, toString, validateItem
-
-
-
-
Field Detail
-
auto_remove_obsolete_items
@ConfigField(desc="Automatically remove obsolote items", alias="repo-auto-remove-obsolete-items") protected boolean auto_remove_obsolete_items
-
firstLoadDone
protected boolean firstLoadDone
-
lastReloadTime
protected long lastReloadTime
-
lastReloadTimeFactor
protected long lastReloadTimeFactor
-
-
Method Detail
-
destroy
public void destroy()
Description copied from interface:ComponentRepositoryMethod destroys this instance of ComponentRepository releasing resources allocated for this instance of ComponentRepository if possible- Specified by:
destroyin interfaceComponentRepository<ClusterRepoItem>
-
getDefaultPropetyItems
public java.lang.String[] getDefaultPropetyItems()
- Overrides:
getDefaultPropetyItemsin classConfigRepository<ClusterRepoItem>
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceShutdownHook
-
getPropertyKey
public java.lang.String getPropertyKey()
- Specified by:
getPropertyKeyin classConfigRepository<ClusterRepoItem>
-
getConfigKey
public java.lang.String getConfigKey()
- Specified by:
getConfigKeyin classConfigRepository<ClusterRepoItem>
-
getItemInstance
public ClusterRepoItem getItemInstance()
Description copied from interface:ComponentRepositoryCreates a new, uninitialized instance of the repository Item.- Specified by:
getItemInstancein interfaceComponentRepository<ClusterRepoItem>- 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.- Specified by:
initRepositoryin interfaceRepository- 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.
-
reload
public void reload()
Description copied from interface:ComponentRepositoryThis method is called to reload items from the database or other permanent storage. It is possible that items list is modified externally by third-party system. When all modifications are done this method is called to refresh the class cache. Whether the implementation load whole list or just last modifications is implementation dependent.- Specified by:
reloadin interfaceComponentRepository<ClusterRepoItem>- Overrides:
reloadin classConfigRepository<ClusterRepoItem>
-
itemLoaded
public void itemLoaded(ClusterRepoItem item)
-
itemChanged
public boolean itemChanged(ClusterRepoItem oldItem, ClusterRepoItem newItem)
- Overrides:
itemChangedin classConfigRepository<ClusterRepoItem>
-
shutdown
public java.lang.String shutdown()
- Specified by:
shutdownin interfaceShutdownHook
-
storeItem
public void storeItem(ClusterRepoItem item)
-
initialize
public void initialize()
Description copied from interface:InitializableMethod will be called, when bean will be created, configured and ready to use.- Specified by:
initializein interfaceInitializable- Overrides:
initializein classConfigRepository<ClusterRepoItem>
-
beforeUnregister
public void beforeUnregister()
Description copied from interface:UnregisterAwareMethod called before bean unregister.- Specified by:
beforeUnregisterin interfaceUnregisterAware- Overrides:
beforeUnregisterin classConfigRepository<ClusterRepoItem>
-
removeObsoloteItems
protected void removeObsoloteItems(long factor)
-
-