Class ContextHandlerMBean
- java.lang.Object
-
- org.eclipse.jetty.jmx.ObjectMBean
-
- org.eclipse.jetty.server.handler.jmx.AbstractHandlerMBean
-
- org.eclipse.jetty.server.handler.jmx.ContextHandlerMBean
-
- All Implemented Interfaces:
DynamicMBean
@ManagedObject("ContextHandler mbean wrapper") public class ContextHandlerMBean extends AbstractHandlerMBean
-
-
Constructor Summary
Constructors Constructor Description ContextHandlerMBean(Object managedObject)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getContextAttributes()voidremoveContextAttribute(String name)voidsetContextAttribute(String name, Object value)voidsetContextAttribute(String name, String value)-
Methods inherited from class org.eclipse.jetty.server.handler.jmx.AbstractHandlerMBean
getContextName, getObjectContextBasis
-
-
-
-
Constructor Detail
-
ContextHandlerMBean
public ContextHandlerMBean(Object managedObject)
-
-
Method Detail
-
getContextAttributes
@ManagedAttribute("Map of context attributes") public Map<String,Object> getContextAttributes()
-
setContextAttribute
@ManagedOperation(value="Set context attribute", impact="ACTION") public void setContextAttribute(@Name(value="name",description="attribute name") String name, @Name(value="value",description="attribute value") Object value)
-
setContextAttribute
@ManagedOperation(value="Set context attribute", impact="ACTION") public void setContextAttribute(@Name(value="name",description="attribute name") String name, @Name(value="value",description="attribute value") String value)
-
removeContextAttribute
@ManagedOperation(value="Remove context attribute", impact="ACTION") public void removeContextAttribute(@Name(value="name",description="attribute name") String name)
-
-