/* * Copyright 2013 Andrej Petras <andrej@ajka-andrej.com>. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.lorislab.smonitor.connector.jboss6.service; import javax.management.MBeanServer; import javax.management.MBeanServerFactory; import javax.management.ObjectName; import org.lorislab.smonitor.connector.tomcat.service.TomcatConnectorService; /** * The tomcat connector service. * * @author Andrej Petras <andrej@ajka-andrej.com> * * @see org.jboss.web.tomcat.service.deployers.TomcatService */ public final class JBoss6ConnectorService extends TomcatConnectorService { /** * The JMX domain. */ private static final String JMX_DOMAIN = "jboss.web"; public JBoss6ConnectorService() { super("JBoss 6"); // get the server version try { MBeanServer mBeanServer = MBeanServerFactory.findMBeanServer(null).get(0); version = (String) mBeanServer.getAttribute(new ObjectName("jboss.system:type=Server"), "Version"); // get the jboss6 tomcat server server = (org.apache.catalina.Server) mBeanServer.getAttribute(new ObjectName("Catalina:type=Server"), "org.apache.catalina.startup.StandardServer"); // get the jboss6 tomcat server service service = server.findService("jboss.web"); } catch (Exception ex) { throw new RuntimeException("Error get the version of the server", ex); } } }