Class SPARQLRepositoryFactory
java.lang.Object
org.eclipse.rdf4j.repository.sparql.config.SPARQLRepositoryFactory
- All Implemented Interfaces:
RepositoryFactory
Creates
SPARQLRepository
from a configuration.- Author:
- James Leigh
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetRepository
(RepositoryImplConfig config) Returns a Repository instance that has been initialized using the supplied configuration data.Returns the type of the repositories that this factory creates.
-
Field Details
-
REPOSITORY_TYPE
- See Also:
-
-
Constructor Details
-
SPARQLRepositoryFactory
public SPARQLRepositoryFactory()
-
-
Method Details
-
getRepositoryType
Description copied from interface:RepositoryFactory
Returns the type of the repositories that this factory creates. Repository types are used for identification and should uniquely identify specific implementations of the Repository API. This type can be equal to the fully qualified class name of the repository, but this is not required.- Specified by:
getRepositoryType
in interfaceRepositoryFactory
-
getConfig
- Specified by:
getConfig
in interfaceRepositoryFactory
-
getRepository
Description copied from interface:RepositoryFactory
Returns a Repository instance that has been initialized using the supplied configuration data.- Specified by:
getRepository
in interfaceRepositoryFactory
- Parameters:
config
- TODO- Returns:
- The created (but un-initialized) repository.
- Throws:
RepositoryConfigException
- If no repository could be created due to invalid or incomplete configuration data.
-