Class CamelHealthCheckConfigurationProperties.HealthCheckConfigurationProperties
- java.lang.Object
-
- org.apache.camel.spring.boot.actuate.health.CamelHealthCheckConfigurationProperties.HealthCheckConfigurationProperties
-
- Enclosing class:
- CamelHealthCheckConfigurationProperties
@ConfigurationProperties(prefix="camel.health.config") public static class CamelHealthCheckConfigurationProperties.HealthCheckConfigurationProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description HealthCheckConfigurationProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetEnabled()IntegergetFailureThreshold()LonggetInterval()StringgetParent()voidsetEnabled(Boolean enabled)voidsetFailureThreshold(Integer failureThreshold)voidsetInterval(Long interval)voidsetParent(String parent)org.apache.camel.health.HealthCheckConfigurationtoHealthCheckConfiguration()
-
-
-
Method Detail
-
getParent
public String getParent()
-
setParent
public void setParent(String parent)
-
getEnabled
public Boolean getEnabled()
-
setEnabled
public void setEnabled(Boolean enabled)
-
getInterval
public Long getInterval()
-
setInterval
public void setInterval(Long interval)
-
getFailureThreshold
public Integer getFailureThreshold()
-
setFailureThreshold
public void setFailureThreshold(Integer failureThreshold)
-
toHealthCheckConfiguration
public org.apache.camel.health.HealthCheckConfiguration toHealthCheckConfiguration()
-
-