Interface RestMonitoringConfiguration
-
- All Superinterfaces:
ConfigBeanProxy,ConfigExtension,Container
public interface RestMonitoringConfiguration extends ConfigBeanProxy, ConfigExtension
- Author:
- Andrew Pielage
-
-
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 StringgetApplicationName()StringgetContextRoot()StringgetEnabled()Checks if the Rest Monitoring service is enabled or notStringgetSecurityEnabled()voidsetApplicationName(String name)voidsetContextRoot(String contextRoot)voidsetEnabled(String value)voidsetSecurityEnabled(String value)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
Method Detail
-
getEnabled
String getEnabled()
Checks if the Rest Monitoring service is enabled or not- Returns:
- true if enabled
-
setEnabled
void setEnabled(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getContextRoot
String getContextRoot()
-
setContextRoot
void setContextRoot(String contextRoot) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getApplicationName
String getApplicationName()
-
setApplicationName
void setApplicationName(String name) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getSecurityEnabled
String getSecurityEnabled()
-
setSecurityEnabled
void setSecurityEnabled(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
-