Package org.bonitasoft.engine.service
Interface PlatformServiceAccessor
-
- All Superinterfaces:
ServiceAccessor
- All Known Implementing Classes:
SpringPlatformServiceAccessor
public interface PlatformServiceAccessor extends ServiceAccessor
Accessor for tenant level engine services.All server side services of the platform can be accessed using this class. Using server side services instead of an API might cause unexpected behaviors and damage your data.
- Author:
- Matthieu Chaffotte, Elias Ricken de Medeiros, Zhao Na
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestroy()BroadcastServicegetBroadcastService()ClassLoaderServicegetClassLoaderService()DependencyServicegetDependencyService()PlatformAuthenticationServicegetPlatformAuthenticationService()CacheServicegetPlatformCacheService()PlatformCommandServicegetPlatformCommandService()NodeConfigurationgetPlatformConfiguration()PlatformLoginServicegetPlatformLoginService()PlatformManagergetPlatformManager()PlatformServicegetPlatformService()PlatformSessionServicegetPlatformSessionService()SchedulerServicegetSchedulerService()ServicesResolvergetServicesResolver()TenantServiceAccessorgetTenantServiceAccessor()TransactionServicegetTransactionService()<T> Tlookup(java.lang.String serviceName)voidpublishEvent(java.lang.Object event)
-
-
-
Method Detail
-
getPlatformService
PlatformService getPlatformService()
-
getPlatformLoginService
PlatformLoginService getPlatformLoginService()
-
getSchedulerService
SchedulerService getSchedulerService()
-
getTransactionService
TransactionService getTransactionService()
-
getTenantServiceAccessor
TenantServiceAccessor getTenantServiceAccessor()
-
getPlatformSessionService
PlatformSessionService getPlatformSessionService()
-
getClassLoaderService
ClassLoaderService getClassLoaderService()
-
getDependencyService
DependencyService getDependencyService()
-
getPlatformCommandService
PlatformCommandService getPlatformCommandService()
-
getPlatformConfiguration
NodeConfiguration getPlatformConfiguration()
-
getPlatformManager
PlatformManager getPlatformManager()
-
getPlatformCacheService
CacheService getPlatformCacheService()
-
destroy
void destroy()
-
getBroadcastService
BroadcastService getBroadcastService()
-
getPlatformAuthenticationService
PlatformAuthenticationService getPlatformAuthenticationService()
-
lookup
<T> T lookup(java.lang.String serviceName) throws org.bonitasoft.engine.exception.NotFoundException- Throws:
org.bonitasoft.engine.exception.NotFoundException
-
getServicesResolver
ServicesResolver getServicesResolver()
-
publishEvent
void publishEvent(java.lang.Object event)
-
-