| Package | Description |
|---|---|
| org.openrdf.repository |
The Repository API: the main API for handling Sesame repositories.
|
| org.openrdf.repository.base | |
| org.openrdf.repository.config | |
| org.openrdf.repository.util |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DelegatingRepository
Main interface for repositories that wrap another repository.
|
| Modifier and Type | Method and Description |
|---|---|
Repository |
DelegatingRepository.getDelegate() |
Repository |
RepositoryConnection.getRepository()
Returns the Repository object to which this connection belongs.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DelegatingRepository.setDelegate(Repository delegate) |
| Modifier and Type | Class and Description |
|---|---|
class |
RepositoryBase
Abstract base class for Repository implementations.
|
class |
RepositoryWrapper
A
DelegatingRepository implementation that, by default, forwards all
method calls to its delegate. |
| Modifier and Type | Method and Description |
|---|---|
Repository |
RepositoryWrapper.getDelegate() |
Repository |
RepositoryConnectionBase.getRepository() |
| Modifier and Type | Method and Description |
|---|---|
void |
RepositoryWrapper.setDelegate(Repository delegate) |
| Constructor and Description |
|---|
RepositoryConnectionBase(Repository repository) |
RepositoryConnectionWrapper(Repository repository) |
RepositoryConnectionWrapper(Repository repository,
RepositoryConnection delegate) |
RepositoryWrapper(Repository delegate)
Creates a new RepositoryWrapper and calls
RepositoryWrapper.setDelegate(Repository) with the supplied delegate repository. |
| Modifier and Type | Method and Description |
|---|---|
Repository |
RepositoryFactory.getRepository(RepositoryImplConfig config)
Returns a Repository instance that has been initialized using the supplied
configuration data.
|
| Modifier and Type | Method and Description |
|---|---|
static RepositoryConfig |
RepositoryConfigUtil.getRepositoryConfig(Repository repository,
String repositoryID) |
static Set<String> |
RepositoryConfigUtil.getRepositoryIDs(Repository repository) |
static boolean |
RepositoryConfigUtil.hasRepositoryConfig(Repository repository,
String repositoryID)
Is configuration information for the specified repository ID present in
the (system) repository?
|
static boolean |
RepositoryConfigUtil.removeRepositoryConfigs(Repository repository,
String... repositoryIDs)
Removes one or more Repository configurations from a Repository.
|
static void |
RepositoryConfigUtil.updateRepositoryConfigs(Repository repository,
RepositoryConfig... configs)
Update the specified Repository with the specified set of
RepositoryConfigs.
|
| Modifier and Type | Method and Description |
|---|---|
static Collection<? extends Statement> |
RepositoryUtil.difference(Repository rep1,
Repository rep2)
Compares two models defined by the default context of two repositories and
returns the difference between the first and the second model (that is,
all statements that are present in rep1 but not in rep2).
|
static boolean |
RepositoryUtil.equals(Repository rep1,
Repository rep2)
Compares the models in the default contexts of the two supplied
repositories and returns true if they are equal.
|
static boolean |
RepositoryUtil.isSubset(Repository rep1,
Repository rep2)
Compares the models of the default context of two repositories and returns
true if rep1 is a subset of rep2.
|
Copyright © 2001-2016 Aduna. All Rights Reserved.