%@page contentType="text/html" import="java.net.*,java.util.*,javax.management.*,javax.management.modelmbean.*, org.jboss.jmx.adaptor.control.Server, org.jboss.jmx.adaptor.control.AttrResultInfo, org.jboss.jmx.adaptor.model.*, org.jdom.output.XMLOutputter, java.lang.reflect.Array" %> <%! XMLOutputter xmlOutput = new XMLOutputter(); String sep = System.getProperty("line.separator", "\n"); public String fixDescription(String desc) { if (desc == null || desc.equals("")) { return "(no description)"; } return desc; } public String fixValue(Object value) { if (value == null) return null; String s = String.valueOf(value); return xmlOutput.escapeElementEntities(s); } public String fixValueForAttribute(Object value) { if (value == null) return null; String s = String.valueOf(value); return xmlOutput.escapeAttributeEntities(s); } %>
| Name | Domain | <%= objectName.getDomain() %> | |
| <%= key %> | <%= value %> | ||
| Java Class | |||
| Description | <%= fixDescription(mbeanInfo.getDescription())%> | ||
Back to Agent View Refresh MBean View
<% if (operationInfo.length > 0) { %>
|
Operation Name Return Type Description |
Parameters |
|---|---|
|
<%= opInfo.getName() %> <%= opInfo.getReturnType() %> <%= fixDescription(opInfo.getDescription())%> |