|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Repository | |
|---|---|
| org.openrdf.http.server.repository | |
| org.openrdf.repository | The Repository API: the main API for handling Sesame repositories. |
| org.openrdf.repository.base | |
| org.openrdf.repository.config | |
| org.openrdf.repository.contextaware | |
| org.openrdf.repository.contextaware.config | |
| org.openrdf.repository.dataset | |
| org.openrdf.repository.dataset.config | |
| org.openrdf.repository.event | |
| org.openrdf.repository.event.base | |
| org.openrdf.repository.http | A repository that serves as a proxy for a remote repository on a Sesame server. |
| org.openrdf.repository.http.config | |
| org.openrdf.repository.manager | |
| org.openrdf.repository.manager.util | |
| org.openrdf.repository.sail | Repository implementation for local storage backends. |
| org.openrdf.repository.sail.config | |
| org.openrdf.repository.util | |
| org.openrdf.workbench | |
| org.openrdf.workbench.base | |
| org.openrdf.workbench.util | |
| Uses of Repository in org.openrdf.http.server.repository |
|---|
| Methods in org.openrdf.http.server.repository that return Repository | |
|---|---|
static Repository |
RepositoryInterceptor.getRepository(javax.servlet.http.HttpServletRequest request)
|
| Uses of Repository in org.openrdf.repository |
|---|
| Subinterfaces of Repository in org.openrdf.repository | |
|---|---|
interface |
DelegatingRepository
Main interface for repositories that wrap another repository. |
| Methods in org.openrdf.repository that return Repository | |
|---|---|
Repository |
DelegatingRepository.getDelegate()
|
Repository |
RepositoryConnection.getRepository()
Returns the Repository object to which this connection belongs. |
| Methods in org.openrdf.repository with parameters of type Repository | |
|---|---|
void |
DelegatingRepository.setDelegate(Repository delegate)
|
| Uses of Repository in org.openrdf.repository.base |
|---|
| Classes in org.openrdf.repository.base that implement Repository | |
|---|---|
class |
RepositoryWrapper
A DelegatingRepository implementation that, by default, forwards all
method calls to its delegate. |
| Methods in org.openrdf.repository.base that return Repository | |
|---|---|
Repository |
RepositoryWrapper.getDelegate()
|
Repository |
RepositoryConnectionBase.getRepository()
|
| Methods in org.openrdf.repository.base with parameters of type Repository | |
|---|---|
void |
RepositoryWrapper.setDelegate(Repository delegate)
|
| Constructors in org.openrdf.repository.base with parameters of type Repository | |
|---|---|
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. |
|
| Uses of Repository in org.openrdf.repository.config |
|---|
| Methods in org.openrdf.repository.config that return Repository | |
|---|---|
Repository |
RepositoryFactory.getRepository(RepositoryImplConfig config)
Returns a Repository instance that has been initialized using the supplied configuration data. |
| Methods in org.openrdf.repository.config with parameters of type Repository | |
|---|---|
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. |
| Uses of Repository in org.openrdf.repository.contextaware |
|---|
| Classes in org.openrdf.repository.contextaware that implement Repository | |
|---|---|
class |
ContextAwareRepository
Allows contexts to be specified at the repository level. |
| Constructors in org.openrdf.repository.contextaware with parameters of type Repository | |
|---|---|
ContextAwareConnection(Repository repository)
|
|
ContextAwareConnection(Repository repository,
RepositoryConnection connection)
|
|
ContextAwareRepository(Repository delegate)
|
|
| Uses of Repository in org.openrdf.repository.contextaware.config |
|---|
| Methods in org.openrdf.repository.contextaware.config that return Repository | |
|---|---|
Repository |
ContextAwareFactory.getRepository(RepositoryImplConfig configuration)
|
| Uses of Repository in org.openrdf.repository.dataset |
|---|
| Classes in org.openrdf.repository.dataset that implement Repository | |
|---|---|
class |
DatasetRepository
|
| Methods in org.openrdf.repository.dataset with parameters of type Repository | |
|---|---|
void |
DatasetRepository.setDelegate(Repository delegate)
|
| Uses of Repository in org.openrdf.repository.dataset.config |
|---|
| Methods in org.openrdf.repository.dataset.config that return Repository | |
|---|---|
Repository |
DatasetRepositoryFactory.getRepository(RepositoryImplConfig config)
|
| Uses of Repository in org.openrdf.repository.event |
|---|
| Subinterfaces of Repository in org.openrdf.repository.event | |
|---|---|
interface |
InterceptingRepository
|
interface |
NotifyingRepository
|
| Methods in org.openrdf.repository.event with parameters of type Repository | |
|---|---|
void |
RepositoryListener.getConnection(Repository repo,
RepositoryConnection conn)
|
boolean |
RepositoryInterceptor.getConnection(Repository repo,
RepositoryConnection conn)
|
void |
RepositoryListener.initialize(Repository repo)
|
boolean |
RepositoryInterceptor.initialize(Repository repo)
|
void |
RepositoryListener.setDataDir(Repository repo,
File dataDir)
|
boolean |
RepositoryInterceptor.setDataDir(Repository repo,
File dataDir)
|
void |
RepositoryListener.shutDown(Repository repo)
|
boolean |
RepositoryInterceptor.shutDown(Repository repo)
|
| Uses of Repository in org.openrdf.repository.event.base |
|---|
| Classes in org.openrdf.repository.event.base that implement Repository | |
|---|---|
class |
InterceptingRepositoryWrapper
Wrapper that notifies interceptors of events on Repositories before they happen. |
class |
NotifyingRepositoryWrapper
This notifying decorator allows listeners to register with the repository or connection and be notified when events occur. |
| Constructors in org.openrdf.repository.event.base with parameters of type Repository | |
|---|---|
InterceptingRepositoryConnectionWrapper(Repository repository,
RepositoryConnection connection)
|
|
InterceptingRepositoryWrapper(Repository delegate)
|
|
NotifyingRepositoryConnectionWrapper(Repository repository,
RepositoryConnection connection)
|
|
NotifyingRepositoryConnectionWrapper(Repository repository,
RepositoryConnection connection,
boolean reportDeltas)
|
|
NotifyingRepositoryWrapper(Repository delegate)
|
|
NotifyingRepositoryWrapper(Repository delegate,
boolean defaultReportDeltas)
|
|
| Uses of Repository in org.openrdf.repository.http |
|---|
| Classes in org.openrdf.repository.http that implement Repository | |
|---|---|
class |
HTTPRepository
A repository that serves as a proxy for a remote repository on a Sesame server. |
| Uses of Repository in org.openrdf.repository.http.config |
|---|
| Methods in org.openrdf.repository.http.config that return Repository | |
|---|---|
Repository |
HTTPRepositoryFactory.getRepository(RepositoryImplConfig config)
|
| Uses of Repository in org.openrdf.repository.manager |
|---|
| Classes in org.openrdf.repository.manager that implement Repository | |
|---|---|
class |
SystemRepository
FIXME: do not extend NotifyingRepositoryWrapper, because SystemRepository shouldn't expose RepositoryWrapper behaviour, just implement NotifyingRepository. |
| Methods in org.openrdf.repository.manager that return Repository | |
|---|---|
protected abstract Repository |
RepositoryManager.createRepository(String id)
Creates and initializes the repository with the specified ID. |
protected Repository |
RemoteRepositoryManager.createRepository(String id)
Creates and initializes the repository with the specified ID. |
protected Repository |
LocalRepositoryManager.createRepository(String id)
|
protected abstract Repository |
RepositoryManager.createSystemRepository()
|
protected Repository |
RemoteRepositoryManager.createSystemRepository()
|
Repository |
RepositoryManager.getRepository(String id)
Gets the repository that is known by the specified ID from this manager. |
Repository |
RepositoryManager.getSystemRepository()
Gets the SYSTEM repository. |
| Methods in org.openrdf.repository.manager that return types with arguments of type Repository | |
|---|---|
Collection<Repository> |
RepositoryManager.getAllRepositories()
Returns all configured repositories. |
Collection<Repository> |
RepositoryManager.getInitializedRepositories()
Returns all inititalized repositories. |
| Methods in org.openrdf.repository.manager with parameters of type Repository | |
|---|---|
void |
SystemRepository.setDelegate(Repository delegate)
|
| Uses of Repository in org.openrdf.repository.manager.util |
|---|
| Methods in org.openrdf.repository.manager.util that return Repository | |
|---|---|
protected Repository |
TypeFilteringRepositoryManager.createRepository(String id)
|
protected Repository |
TypeFilteringRepositoryManager.createSystemRepository()
|
Repository |
TypeFilteringRepositoryManager.getRepository(String id)
|
Repository |
TypeFilteringRepositoryManager.getSystemRepository()
|
| Methods in org.openrdf.repository.manager.util that return types with arguments of type Repository | |
|---|---|
Collection<Repository> |
TypeFilteringRepositoryManager.getInitializedRepositories()
|
| Uses of Repository in org.openrdf.repository.sail |
|---|
| Classes in org.openrdf.repository.sail that implement Repository | |
|---|---|
class |
SailRepository
An implementation of the Repository interface that operates on a
(stack of) Sail object(s). |
| Uses of Repository in org.openrdf.repository.sail.config |
|---|
| Methods in org.openrdf.repository.sail.config that return Repository | |
|---|---|
Repository |
SailRepositoryFactory.getRepository(RepositoryImplConfig config)
|
| Uses of Repository in org.openrdf.repository.util |
|---|
| Methods in org.openrdf.repository.util with parameters of type Repository | |
|---|---|
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. |
| Uses of Repository in org.openrdf.workbench |
|---|
| Methods in org.openrdf.workbench with parameters of type Repository | |
|---|---|
void |
RepositoryServlet.setRepository(Repository repository)
|
| Uses of Repository in org.openrdf.workbench.base |
|---|
| Fields in org.openrdf.workbench.base declared as Repository | |
|---|---|
protected Repository |
BaseRepositoryServlet.repository
|
| Methods in org.openrdf.workbench.base with parameters of type Repository | |
|---|---|
void |
BaseRepositoryServlet.setRepository(Repository repository)
|
| Uses of Repository in org.openrdf.workbench.util |
|---|
| Constructors in org.openrdf.workbench.util with parameters of type Repository | |
|---|---|
WorkbenchRequest(Repository repository,
javax.servlet.http.HttpServletRequest request,
Map<String,String> defaults)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||