Package com.flowable.spring.boot.dmn
Class FlowableDmnProperties
java.lang.Object
com.flowable.spring.boot.dmn.FlowableDmnProperties
@ConfigurationProperties(prefix="flowable.dmn")
public class FlowableDmnProperties
extends java.lang.Object
Properties for configuring the dmn engine.
- Author:
- Filip Hrisafov
-
Constructor Summary
Constructors Constructor Description FlowableDmnProperties()
-
Method Summary
Modifier and Type Method Description java.lang.String
getDeploymentName()
java.lang.String
getResourceLocation()
java.util.List<java.lang.String>
getResourceSuffixes()
FlowableServlet
getServlet()
boolean
isDeployResources()
boolean
isEnabled()
boolean
isEnableSafeXml()
boolean
isHistoryEnabled()
boolean
isStrictMode()
void
setDeploymentName(java.lang.String deploymentName)
void
setDeployResources(boolean deployResources)
void
setEnabled(boolean enabled)
void
setEnableSafeXml(boolean enableSafeXml)
void
setHistoryEnabled(boolean historyEnabled)
void
setResourceLocation(java.lang.String resourceLocation)
void
setResourceSuffixes(java.util.List<java.lang.String> resourceSuffixes)
void
setStrictMode(boolean strictMode)
-
Constructor Details
-
FlowableDmnProperties
public FlowableDmnProperties()
-
-
Method Details
-
getDeploymentName
public java.lang.String getDeploymentName() -
setDeploymentName
public void setDeploymentName(java.lang.String deploymentName) -
getResourceLocation
public java.lang.String getResourceLocation() -
setResourceLocation
public void setResourceLocation(java.lang.String resourceLocation) -
getResourceSuffixes
public java.util.List<java.lang.String> getResourceSuffixes() -
setResourceSuffixes
public void setResourceSuffixes(java.util.List<java.lang.String> resourceSuffixes) -
isDeployResources
public boolean isDeployResources() -
setDeployResources
public void setDeployResources(boolean deployResources) -
isEnabled
public boolean isEnabled() -
setEnabled
public void setEnabled(boolean enabled) -
isHistoryEnabled
public boolean isHistoryEnabled() -
setHistoryEnabled
public void setHistoryEnabled(boolean historyEnabled) -
isEnableSafeXml
public boolean isEnableSafeXml() -
setEnableSafeXml
public void setEnableSafeXml(boolean enableSafeXml) -
isStrictMode
public boolean isStrictMode() -
setStrictMode
public void setStrictMode(boolean strictMode) -
getServlet
-