Class AppEngineFactoryBean
- java.lang.Object
-
- com.flowable.app.engine.impl.spring.AppEngineFactoryBean
-
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.FactoryBean<AppEngine>
,org.springframework.context.ApplicationContextAware
public class AppEngineFactoryBean extends java.lang.Object implements org.springframework.beans.factory.FactoryBean<AppEngine>, org.springframework.beans.factory.DisposableBean, org.springframework.context.ApplicationContextAware
- Author:
- Dave Syer, Tijs Rademakers, Joram Barrez, Josh Long
-
-
Field Summary
Fields Modifier and Type Field Description protected AppEngine
appEngine
protected AppEngineConfiguration
appEngineConfiguration
protected org.springframework.context.ApplicationContext
applicationContext
-
Constructor Summary
Constructors Constructor Description AppEngineFactoryBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
configureExternallyManagedTransactions()
void
destroy()
AppEngineConfiguration
getAppEngineConfiguration()
AppEngine
getObject()
java.lang.Class<AppEngine>
getObjectType()
boolean
isSingleton()
void
setAppEngineConfiguration(AppEngineConfiguration appEngineConfiguration)
void
setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
-
-
-
Field Detail
-
appEngineConfiguration
protected AppEngineConfiguration appEngineConfiguration
-
applicationContext
protected org.springframework.context.ApplicationContext applicationContext
-
appEngine
protected AppEngine appEngine
-
-
Method Detail
-
destroy
public void destroy() throws java.lang.Exception
- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
- Throws:
java.lang.Exception
-
setApplicationContext
public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) throws org.springframework.beans.BeansException
- Specified by:
setApplicationContext
in interfaceorg.springframework.context.ApplicationContextAware
- Throws:
org.springframework.beans.BeansException
-
getObject
public AppEngine getObject() throws java.lang.Exception
- Specified by:
getObject
in interfaceorg.springframework.beans.factory.FactoryBean<AppEngine>
- Throws:
java.lang.Exception
-
configureExternallyManagedTransactions
protected void configureExternallyManagedTransactions()
-
getObjectType
public java.lang.Class<AppEngine> getObjectType()
- Specified by:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<AppEngine>
-
isSingleton
public boolean isSingleton()
- Specified by:
isSingleton
in interfaceorg.springframework.beans.factory.FactoryBean<AppEngine>
-
getAppEngineConfiguration
public AppEngineConfiguration getAppEngineConfiguration()
-
setAppEngineConfiguration
public void setAppEngineConfiguration(AppEngineConfiguration appEngineConfiguration)
-
-