Package tigase.db.util
Class SchemaManager.DataSourceInfo
- java.lang.Object
-
- tigase.db.util.SchemaManager.DataSourceInfo
-
- All Implemented Interfaces:
DataSource,Repository
- Enclosing class:
- SchemaManager
public static class SchemaManager.DataSourceInfo extends java.lang.Object implements DataSource
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface tigase.db.Repository
Repository.Meta, Repository.SchemaId
-
-
Field Summary
-
Fields inherited from interface tigase.db.DataSource
log
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanautomaticSchemaManagement()java.lang.StringgetName()java.lang.StringgetResourceUri()Returns a DB connection string or DB connection URI.java.util.Optional<Version>getSchemaVersion(java.lang.String component)Method obtains version of the schema for particular component stored in the database.voidinitialize(java.lang.String connStr)The method is called to initialize the data repository.voidinitRepository(java.lang.String resource_uri, java.util.Map<java.lang.String,java.lang.String> params)Deprecated.protected voidsetAutomaticSchemaManagement(boolean value)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface tigase.db.DataSource
checkConnectivity, checkSchemaVersion
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getSchemaVersion
public java.util.Optional<Version> getSchemaVersion(java.lang.String component)
Description copied from interface:DataSourceMethod obtains version of the schema for particular component stored in the database.- Specified by:
getSchemaVersionin interfaceDataSource- Parameters:
component- name of the component for which we want to get the schema version- Returns:
- an optional value of the version.
-
getResourceUri
public java.lang.String getResourceUri()
Description copied from interface:DataSourceReturns a DB connection string or DB connection URI.- Specified by:
getResourceUriin interfaceDataSource- Returns:
- a
Stringvalue representing database connection string.
-
initialize
public void initialize(java.lang.String connStr) throws RepositoryExceptionDescription copied from interface:DataSourceThe method is called to initialize the data repository.- Specified by:
initializein interfaceDataSource- Parameters:
connStr- 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(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.
-
automaticSchemaManagement
public boolean automaticSchemaManagement()
- Specified by:
automaticSchemaManagementin interfaceDataSource
-
setAutomaticSchemaManagement
protected void setAutomaticSchemaManagement(boolean value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-