Package org.dspace.app.util.factory
Class UtilServiceFactory
- java.lang.Object
-
- org.dspace.app.util.factory.UtilServiceFactory
-
- Direct Known Subclasses:
UtilServiceFactoryImpl
public abstract class UtilServiceFactory extends Object
Abstract factory to get services for the util package, use UtilServiceFactory.getInstance() to retrieve an implementation- Author:
- kevinvandevelde at atmire.com
-
-
Constructor Summary
Constructors Constructor Description UtilServiceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static UtilServiceFactorygetInstance()abstract MetadataExposureServicegetMetadataExposureService()abstract OpenSearchServicegetOpenSearchService()abstract WebAppServicegetWebAppService()
-
-
-
Method Detail
-
getWebAppService
public abstract WebAppService getWebAppService()
-
getOpenSearchService
public abstract OpenSearchService getOpenSearchService()
-
getMetadataExposureService
public abstract MetadataExposureService getMetadataExposureService()
-
getInstance
public static UtilServiceFactory getInstance()
-
-