/* 1076 */ List endpoints = this.connectionManager.getActiveConnections();
/* */
/* 1078 */ out.println("<table><tr><td>ID</td><td>Host</td><td>User</td><td>#Sessions</td></tr>");
/* 1079 */ for (Iterator iter = endpoints.iterator(); iter.hasNext(); )
/* */ {
/* 1081 */ ServerConnectionEndpoint endpoint = (ServerConnectionEndpoint)iter.next();
/* */
/* 1083 */ out.println("<tr>");
/* 1084 */ out.println("<td>" + endpoint.toString() + "</td>");
/* 1085 */ out.println("<td>" + endpoint.getCallbackHandler().getCallbackClient().getInvoker().getLocator().getHost() + "</td>");
/* 1086 */ out.println("<td>" + endpoint.getUsername() + "</td>");
/* 1087 */ out.println("<td>" + endpoint.getSessions().size() + "</td>");
/* 1088 */ out.println("</tr>");
/* */ }
/* */
/* 1091 */ out.println("</table>");
/* */