Package tigase.server.ext
Class AbstractCompDBRepository
- java.lang.Object
-
- tigase.db.comp.ConfigRepository<Item>
-
- tigase.db.comp.UserRepoRepository<CompRepoItem>
-
- tigase.server.ext.AbstractCompDBRepository
-
- All Implemented Interfaces:
Iterable<CompRepoItem>,ComponentRepository<CompRepoItem>,Repository,Initializable,UnregisterAware
- Direct Known Subclasses:
CompCompDBRepository,ServerCompDBRepository
public class AbstractCompDBRepository extends UserRepoRepository<CompRepoItem>
Created: Oct 24, 2009 3:55:41 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 StringITEMS_IMPORT_FILE-
Fields inherited from class tigase.db.comp.UserRepoRepository
REPO_CLASS_PROP_KEY, REPO_URI_PROP_KEY
-
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 Modifier Constructor Description protectedAbstractCompDBRepository(String extenalComponentsGroup)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddestroy()Method destroys this instance of ComponentRepository releasing resources allocated for this instance of ComponentRepository if possibleStringgetConfigKey()String[]getDefaultPropetyItems()CompRepoItemgetItemInstance()Creates a new, uninitialized instance of the repository Item.StringgetItemsListPKey()StringgetPropertyKey()BareJIDgetRepoUser()voidinitialize()Method will be called, when bean will be created, configured and ready to use.voidinitRepository(String resource_uri, Map<String,String> params)Deprecated.voidloadItemsFromFile()StringvalidateItem(CompRepoItem item)Performs Item validation to check whether it meets the repository policy.-
Methods inherited from class tigase.db.comp.UserRepoRepository
reload, setRepo, store
-
Methods inherited from class tigase.db.comp.ConfigRepository
addItem, addItemNoStore, addRepoChangeListener, allItems, beforeUnregister, contains, getDefaultItems, getDefaults, getItem, getItemsOld, initItemsMap, isInitialized, itemChanged, iterator, removeItem, removeItemNoStore, removeRepoChangeListener, setAutoloadTimer, setAutoReloadInterval, setItemsOld, setProperties, size, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
ITEMS_IMPORT_FILE
public static final String ITEMS_IMPORT_FILE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AbstractCompDBRepository
protected AbstractCompDBRepository(String extenalComponentsGroup)
-
-
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
-
getConfigKey
public String getConfigKey()
- Specified by:
getConfigKeyin classConfigRepository<CompRepoItem>
-
getDefaultPropetyItems
public String[] getDefaultPropetyItems()
- Overrides:
getDefaultPropetyItemsin classConfigRepository<CompRepoItem>
-
getItemInstance
public CompRepoItem getItemInstance()
Description copied from interface:ComponentRepositoryCreates a new, uninitialized instance of the repository Item.- Returns:
- a new, uninitialized instance of the repository Item.
-
getItemsListPKey
public String getItemsListPKey()
- Overrides:
getItemsListPKeyin classUserRepoRepository<CompRepoItem>
-
getPropertyKey
public String getPropertyKey()
- Specified by:
getPropertyKeyin classConfigRepository<CompRepoItem>
-
getRepoUser
public BareJID getRepoUser()
- Specified by:
getRepoUserin classUserRepoRepository<CompRepoItem>
-
initRepository
@Deprecated public void initRepository(String resource_uri, Map<String,String> params) throws DBInitException
Deprecated.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 String validateItem(CompRepoItem item)
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.
-
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<CompRepoItem>
-
loadItemsFromFile
public void loadItemsFromFile()
-
-