1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 package org.jboss.net.jmx.adaptor.server;9 10 /**11 * Some Constants for the jmxadaptor package.12 *13 * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>14 * @created 1. October 200115 * @version $Revision: 1.4 $16 */17 18 public interface Constants extends org.jboss.net.Constants19 {20 String DOMAIN = "jboss.net";21 String NAME = "JMXConnector";22 String TYPE = "service";23 String DEFAULT_AXIS_SERVICE_NAME = "jboss.net=AxisService";24 String JMX_INSTALL_DESCRIPTOR = "META-INF/install-jmx.xml";25 }26