01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.mx.service;
23:
24: /**
25: * Defines constants for JBossMX services.
26: *
27: * @author <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
28: * @author <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a>.
29: * @version $Revision: 57200 $
30: */
31: public interface ServiceConstants {
32: /**
33: * The object name domain <tt>'JBossMX'<tt> can be used by
34: * JBossMX service implementations.
35: */
36: final static String JBOSSMX_DOMAIN = "JBossMX";
37:
38: /**
39: * Default object name for persistence interceptor with <tt>ON_TIMER</tt>
40: * policy.
41: */
42: final static String PERSISTENCE_TIMER = new String(JBOSSMX_DOMAIN
43: + ":name=PersistenceTimer");
44:
45: /**
46: * DTD file name for XMLMBeanLoader, version 1.0
47: */
48: final static String MBEAN_LOADER_DTD_1_0 = "JBossMX_MBeanLoader_1_0.dtd";
49:
50: /** DTD file name for JBossMX XMBean, version 1.0 */
51: final static String JBOSSMX_XMBEAN_DTD_1_0 = "jboss_xmbean_1_0.dtd";
52: final static String PUBLIC_JBOSSMX_XMBEAN_DTD_1_0 = "-//JBoss//DTD JBOSS XMBEAN 1.0//EN";
53:
54: /** DTD file name for JBossMX XMBean, version 1.1 */
55: final static String JBOSSMX_XMBEAN_DTD_1_1 = "jboss_xmbean_1_1.dtd";
56: final static String PUBLIC_JBOSSMX_XMBEAN_DTD_1_1 = "-//JBoss//DTD JBOSS XMBEAN 1.1//EN";
57:
58: /** DTD file name for JBossMX XMBean, version 1.2 */
59: final static String JBOSSMX_XMBEAN_DTD_1_2 = "jboss_xmbean_1_2.dtd";
60: final static String PUBLIC_JBOSSMX_XMBEAN_DTD_1_2 = "-//JBoss//DTD JBOSS XMBEAN 1.2//EN";
61:
62: }
|