Package org.dspace.authority.factory
Class AuthorityServiceFactory
- java.lang.Object
-
- org.dspace.authority.factory.AuthorityServiceFactory
-
- Direct Known Subclasses:
AuthorityServiceFactoryImpl
public abstract class AuthorityServiceFactory extends Object
Abstract factory to get services for the authority package, use AuthorityServiceFactory.getInstance() to retrieve an implementation- Author:
- kevinvandevelde at atmire.com
-
-
Constructor Summary
Constructors Constructor Description AuthorityServiceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract List<AuthorityIndexerInterface>getAuthorityIndexers()abstract AuthorityIndexingServicegetAuthorityIndexingService()abstract AuthoritySearchServicegetAuthoritySearchService()abstract AuthorityServicegetAuthorityService()abstract AuthorityValueServicegetAuthorityValueService()abstract AuthorityTypesgetAuthorTypes()static AuthorityServiceFactorygetInstance()
-
-
-
Method Detail
-
getAuthorityValueService
public abstract AuthorityValueService getAuthorityValueService()
-
getAuthorTypes
public abstract AuthorityTypes getAuthorTypes()
-
getAuthorityIndexingService
public abstract AuthorityIndexingService getAuthorityIndexingService()
-
getAuthoritySearchService
public abstract AuthoritySearchService getAuthoritySearchService()
-
getAuthorityService
public abstract AuthorityService getAuthorityService()
-
getAuthorityIndexers
public abstract List<AuthorityIndexerInterface> getAuthorityIndexers()
-
getInstance
public static AuthorityServiceFactory getInstance()
-
-