public interface Repository
Modifier and Type | Interface and Description |
---|---|
static interface |
Repository.Meta
Meta created to add possibility to retrieve information about implementation of repository (ie. supported
database URI)
|
static interface |
Repository.SchemaId
Annotation provides information about schema (ie. database schema) required by annotated class.
|
Modifier and Type | Method and Description |
---|---|
default void |
initRepository(String resource_uri,
Map<String,String> params)
Deprecated.
|
@Deprecated default void initRepository(String resource_uri, Map<String,String> params) throws DBInitException
resource_uri
parameter as the database connection string or via
params
map if the required repository parameters are more complex or both.resource_uri
- value in most cases representing the database connection string.params
- is a Map
with repository properties necessary to initialize and perform all the
functions. The initialization parameters are implementation dependent.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.Copyright © 2004–2019 "Tigase, Inc.". All rights reserved.