blob: 5f1cc30a802728583ad54feb52b4eebfcab21741 [file] [log] [blame]
<!-- Standard Struts Entries -->
<%@ page language="java" contentType="text/html;charset=utf-8" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<html:html locale="true">
<!-- Standard Content -->
<%@ include file="header.jsp" %>
<!-- Body -->
<body bgcolor="white">
<table border="1" cellpadding="5">
<tr>
<th align="center" colspan="1">
Registered MBean Names
</th>
</tr>
<tr>
<th align="center">Name</th>
</tr>
<logic:iterate id="name" name="names">
<tr>
<td><bean:write name="name"/></td>
</tr>
</logic:iterate>
</table>
</body>
<!-- Standard Footer -->
<%@ include file="footer.jsp" %>
</html:html>