Interface MicroprofileHealthCheckConfiguration
-
- All Superinterfaces:
ConfigBeanProxy,ConfigExtension,Container
public interface MicroprofileHealthCheckConfiguration extends ConfigExtension
- Since:
- 4.1.2.182
- Author:
- jonathan coustick
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnabled()StringgetEndpoint()StringgetRoles()StringgetSecurityEnabled()StringgetVirtualServers()voidsetEnabled(String value)voidsetEndpoint(String value)voidsetRoles(String value)voidsetSecurityEnabled(String value)voidsetVirtualServers(String value)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
Method Detail
-
getEnabled
String getEnabled()
- Returns:
- a Boolean value determining if the service is enabled or disabled.
-
setEnabled
void setEnabled(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getEndpoint
String getEndpoint()
- Returns:
- a String value defines the endpoint of health service.
-
setEndpoint
void setEndpoint(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getVirtualServers
String getVirtualServers()
- Returns:
- a String value defines the attached virtual servers.
-
setVirtualServers
void setVirtualServers(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getSecurityEnabled
String getSecurityEnabled()
- Returns:
- a Boolean value determining if the security is enabled or not.
-
setSecurityEnabled
void setSecurityEnabled(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getRoles
String getRoles()
- Returns:
- a String value defines the roles.
-
setRoles
void setRoles(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
-