KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > net > jmx > server > Constants


1 /*
2 * JBoss, the OpenSource J2EE webOS
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */

7
8 // $Id: Constants.java,v 1.6 2004/03/26 03:56:48 starksm Exp $
9

10 package org.jboss.net.jmx.server;
11
12 import org.apache.log4j.Category;
13
14 /**
15  * Some Constants for the jmx server package
16  * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
17  * @since 1. October 2001
18  * @version $Revision: 1.6 $
19  */

20
21 public interface Constants extends org.jboss.net.axis.server.Constants
22 {
23
24    static final Category LOG =
25       Category.getInstance(Constants.class.getPackage().getName());
26    static final String JavaDoc MBEAN_SERVER_ID_PROPERTY = "MBeanServerId";
27    static final String JavaDoc OBJECTNAME_PROPERTY = "ObjectName";
28    static final String JavaDoc WRONG_OBJECT_NAME =
29       "ObjectName could not be converted to a javax.management.ObjectName.";
30    static final String JavaDoc NO_MBEAN_SERVER_FOUND =
31       "Could not find the associated MBeanServer.";
32    static final String JavaDoc COULD_NOT_CONVERT_PARAMS =
33       "Could not convert the parameters to corresponding Java types.";
34    static final String JavaDoc CLASS_NOT_FOUND = "Could not find Java class.";
35    static final String JavaDoc NO_MBEAN_INSTANCE = "Could not find MBean instance.";
36    static final String JavaDoc NO_SUCH_ATTRIBUTE = "Could not find MBean attribute.";
37    static final String JavaDoc INVALID_ARGUMENT = "Invalid Argument.";
38    static final String JavaDoc MBEAN_EXCEPTION = "Problems while interfacing JMX.";
39    static final String JavaDoc BEAN_INFO_IS_NULL =
40       "MBeanInfo is null, could not aquire MBean Meta Data!";
41    static final String JavaDoc EXCEPTION_OCCURED =
42       "Exception occurred in the target MBean method.";
43    static final String JavaDoc COULDNT_GEN_WSDL = "Could not generate WSDL document";
44    static final String JavaDoc INTROSPECTION_EXCEPTION = "Could not introspect mbean.";
45 }
Popular Tags