Package org.glassfish.admin.amx.base
Interface Tools
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetHierarchy()StringgetInfo()emit information about all MBeansStringinfo(String searchString)emit information about MBeans, loosey-goosey seach string eg type alone, pattern, etcStringinfoPath(String path)emit information about all MBeans of the specified type, or pathStringinfoPP(String parentPath, boolean recursive)emit information about all MBeans having the specified parent path (PP), recursively or notStringinfoType(String type)emit information about all MBeans of the specified type, or pathStringjava(ObjectName objectName)Get a compilable java interface for the specified MBeanStringvalidate()Validate all AMX MBeans.Stringvalidate(ObjectName objectNameOrPattern)Validate a single MBean or MBeans specified by a pattern.Stringvalidate(ObjectName[] mbeans)Validate MBeans: specific ObjectNames and/or patterns.-
Methods inherited from interface org.glassfish.admin.amx.core.AMX_SPI
getChildren, getName, getParent
-
Methods inherited from interface org.glassfish.admin.amx.core.AMXProxy
as, attributeNames, attributesMap, attributesMap, child, child, childrenMap, childrenMap, childrenMaps, childrenSet, extra, invokeOp, invokeOp, java, nameProp, objectName, parent, parentPath, path, type, valid
-
-
-
-
Method Detail
-
getInfo
@ManagedAttribute @Description("emit information about all MBeans") String getInfo()
emit information about all MBeans
-
infoType
@Description("emit information about all MBeans of the specified type, or path") @ManagedOperation(impact=0) String infoType(@Param(name="type") String type)
emit information about all MBeans of the specified type, or path
-
infoPath
@Description("emit information about all MBeans of the specified type, or path") @ManagedOperation(impact=0) String infoPath(@Param(name="path") String path)
emit information about all MBeans of the specified type, or path
-
infoPP
@Description("emit information about all MBeans having the specified parent path (PP), recursively or not") @ManagedOperation(impact=0) String infoPP(@Description("path of the *parent* MBean") @Param(name="parentPath") String parentPath, @Param(name="recursive") boolean recursive)
emit information about all MBeans having the specified parent path (PP), recursively or not
-
info
@Description("emit information about MBeans, loosey-goosey seach string eg type alone") @ManagedOperation(impact=0) String info(@Description("loosey-goosey seach string") @Param(name="searchString") String searchString)
emit information about MBeans, loosey-goosey seach string eg type alone, pattern, etc
-
java
@Description("Get a compilable java interface for the specified MBean") @ManagedOperation(impact=0) String java(@Description("Get a compilable java interface for the specified MBean") @Param(name="objectName") ObjectName objectName)
Get a compilable java interface for the specified MBean
-
validate
@ManagedOperation(impact=0) @Description("Validate all AMX MBeans and return status") String validate()
Validate all AMX MBeans.
-
validate
@ManagedOperation(impact=0) @Description("Validate a single MBean or MBeans specified by a pattern") String validate(@Param(name="objectNameOrPattern") ObjectName objectNameOrPattern)
Validate a single MBean or MBeans specified by a pattern.
-
validate
@Description("Validate MBeans: specific ObjectNames and/or patterns") @ManagedOperation(impact=0) String validate(@Param(name="mbeans") ObjectName[] mbeans)
Validate MBeans: specific ObjectNames and/or patterns.
-
getHierarchy
@Description("Dump the hierarchy of AMX MBeans by recursive descent") @ManagedAttribute String getHierarchy()
-
-