Class FlowableEventRegistryProperties
java.lang.Object
com.flowable.spring.boot.eventregistry.FlowableEventRegistryProperties
@ConfigurationProperties(prefix="flowable.eventregistry")
public class FlowableEventRegistryProperties
extends java.lang.Object
Properties for configuring the event registry engine.
-
Constructor Summary
Constructors Constructor Description FlowableEventRegistryProperties()
-
Method Summary
Modifier and Type Method Description java.time.Duration
getChangeDetectionDelay()
java.time.Duration
getChangeDetectionInitialDelay()
java.lang.String
getDeploymentName()
java.lang.String
getResourceLocation()
java.util.List<java.lang.String>
getResourceSuffixes()
FlowableServlet
getServlet()
boolean
isDeployResources()
boolean
isEnableChangeDetection()
boolean
isEnabled()
void
setChangeDetectionDelay(java.time.Duration changeDetectionDelay)
void
setChangeDetectionInitialDelay(java.time.Duration changeDetectionInitialDelay)
void
setDeploymentName(java.lang.String deploymentName)
void
setDeployResources(boolean deployResources)
void
setEnableChangeDetection(boolean enableChangeDetection)
void
setEnabled(boolean enabled)
void
setResourceLocation(java.lang.String resourceLocation)
void
setResourceSuffixes(java.util.List<java.lang.String> resourceSuffixes)
-
Constructor Details
-
FlowableEventRegistryProperties
public FlowableEventRegistryProperties()
-
-
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) -
isEnableChangeDetection
public boolean isEnableChangeDetection() -
setEnableChangeDetection
public void setEnableChangeDetection(boolean enableChangeDetection) -
getChangeDetectionInitialDelay
public java.time.Duration getChangeDetectionInitialDelay() -
setChangeDetectionInitialDelay
public void setChangeDetectionInitialDelay(java.time.Duration changeDetectionInitialDelay) -
getChangeDetectionDelay
public java.time.Duration getChangeDetectionDelay() -
setChangeDetectionDelay
public void setChangeDetectionDelay(java.time.Duration changeDetectionDelay) -
isEnabled
public boolean isEnabled() -
setEnabled
public void setEnabled(boolean enabled) -
getServlet
-