Package org.flowable.ui.admin.properties
Class FlowableAdminAppProperties
- java.lang.Object
-
- org.flowable.ui.admin.properties.FlowableAdminAppProperties
-
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean
@ConfigurationProperties(prefix="flowable.admin.app") public class FlowableAdminAppProperties extends Object implements org.springframework.beans.factory.InitializingBean
Properties for the Admin UI App.- Author:
- Filip Hrisafov
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFlowableAdminAppProperties.EncryptionPasswords for rest endpoints and master configs are stored encrypted in the database using AES/CBC/PKCS5PADDING It needs a 128-bit initialization vector (http://en.wikipedia.org/wiki/Initialization_vector) and a 128-bit secret key represented as 16 ascii characters belowstatic classFlowableAdminAppProperties.SecurityThe security configuration for the Admin Application.
-
Constructor Summary
Constructors Constructor Description FlowableAdminAppProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()StringgetDataSourcePrefix()FlowableAdminAppProperties.SecuritygetSecurity()Map<EndpointType,ServerConfig>getServerConfig()voidsetDataSourcePrefix(String dataSourcePrefix)voidsetServerConfig(Map<EndpointType,ServerConfig> serverConfig)
-
-
-
Method Detail
-
getDataSourcePrefix
public String getDataSourcePrefix()
-
setDataSourcePrefix
public void setDataSourcePrefix(String dataSourcePrefix)
-
getServerConfig
public Map<EndpointType,ServerConfig> getServerConfig()
-
setServerConfig
public void setServerConfig(Map<EndpointType,ServerConfig> serverConfig)
-
getSecurity
public FlowableAdminAppProperties.Security getSecurity()
-
afterPropertiesSet
public void afterPropertiesSet()
- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean
-
-