Package tigase.db.xml
Class XMLDataSource
java.lang.Object
tigase.db.xml.XMLDataSource
- All Implemented Interfaces:
DataSource
,Repository
Created by andrzej on 04.04.2017.
-
Nested Class Summary
Nested classes/interfaces inherited from interface tigase.db.Repository
Repository.Meta, Repository.SchemaId
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a DB connection string or DB connection URI.getSchemaVersion
(String component) Method obtains version of the schema for particular component stored in the database.getXMLDB()
void
initialize
(String file) The method is called to initialize the data repository.void
initRepository
(String file, Map<String, String> params) Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface tigase.db.DataSource
automaticSchemaManagement, checkConnectivity, checkSchemaVersion
-
Constructor Details
-
XMLDataSource
public XMLDataSource()
-
-
Method Details
-
getSchemaVersion
Description copied from interface:DataSource
Method obtains version of the schema for particular component stored in the database.- Specified by:
getSchemaVersion
in interfaceDataSource
- Parameters:
component
- name of the component for which we want to get the schema version- Returns:
- an optional value of the version.
-
getResourceUri
Description copied from interface:DataSource
Returns a DB connection string or DB connection URI.- Specified by:
getResourceUri
in interfaceDataSource
- Returns:
- a
String
value representing database connection string.
-
initialize
Description copied from interface:DataSource
The method is called to initialize the data repository.- Specified by:
initialize
in interfaceDataSource
- Parameters:
file
- value in most cases representing the database connection string.- Throws:
RepositoryException
- if there was an error during initialization of data source. Some implementations, though, perform so called lazy initialization so even though there is a problem with the underlying data source it may not be signaled through this method call.
-
initRepository
@Deprecated public void initRepository(String file, Map<String, String> params) throws DBInitExceptionDeprecated.Description copied from interface:Repository
Method 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_uri
parameter as the database connection string or viaparams
map if the required repository parameters are more complex or both.- Specified by:
initRepository
in interfaceRepository
- Parameters:
file
- value in most cases representing the database connection string.params
- is aMap
with 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.
-
getXMLDB
-