Interface MetricsServiceConfiguration
-
- All Superinterfaces:
ConfigBeanProxy,ConfigExtension,Container
public interface MetricsServiceConfiguration extends ConfigBeanProxy, ConfigExtension
Configuration for the Metrics Service.- Author:
- Gaurav Gupta
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDynamic()StringgetEnabled()StringgetEndpoint()StringgetRoles()StringgetSecureMetrics()Deprecated.StringgetSecurityEnabled()StringgetVirtualServers()voidsetDynamic(String value)voidsetEnabled(String value)voidsetEndpoint(String value)voidsetRoles(String value)voidsetSecureMetrics(String value)Deprecated.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
-
getSecureMetrics
@Deprecated String getSecureMetrics()
Deprecated.- Returns:
- a Boolean value determining if the metrics service is secure or not.
-
setSecureMetrics
@Deprecated void setSecureMetrics(String value) throws PropertyVetoException
Deprecated.- Throws:
PropertyVetoException
-
getDynamic
String getDynamic()
- Returns:
- a Boolean value determining if the service is dynamic or not.
-
setDynamic
void setDynamic(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getEndpoint
String getEndpoint()
- Returns:
- a String value defines the endpoint of metrics 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
-
-