Package org.apache.jackrabbit.spi
Interface RepositoryServiceFactory
-
public interface RepositoryServiceFactoryFactory for creatingRepositoryServiceinstances. Implementations must provide a no argument constructor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RepositoryServicecreateRepositoryService(java.util.Map<?,?> parameters)Create a newRepositoryService.
-
-
-
Method Detail
-
createRepositoryService
RepositoryService createRepositoryService(java.util.Map<?,?> parameters) throws javax.jcr.RepositoryException
Create a newRepositoryService. If the factory does not understand the passedparametersit must returnnull.- Parameters:
parameters- implementation specific set of parameters- Returns:
- a fresh
RepositoryServiceinstance ornull. - Throws:
javax.jcr.RepositoryException- If there was an error creating theRepositoryServiceinstance
-
-