1 7 8 10 package org.jboss.net.jmx.server; 11 12 import org.apache.log4j.Category; 13 14 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 MBEAN_SERVER_ID_PROPERTY = "MBeanServerId"; 27 static final String OBJECTNAME_PROPERTY = "ObjectName"; 28 static final String WRONG_OBJECT_NAME = 29 "ObjectName could not be converted to a javax.management.ObjectName."; 30 static final String NO_MBEAN_SERVER_FOUND = 31 "Could not find the associated MBeanServer."; 32 static final String COULD_NOT_CONVERT_PARAMS = 33 "Could not convert the parameters to corresponding Java types."; 34 static final String CLASS_NOT_FOUND = "Could not find Java class."; 35 static final String NO_MBEAN_INSTANCE = "Could not find MBean instance."; 36 static final String NO_SUCH_ATTRIBUTE = "Could not find MBean attribute."; 37 static final String INVALID_ARGUMENT = "Invalid Argument."; 38 static final String MBEAN_EXCEPTION = "Problems while interfacing JMX."; 39 static final String BEAN_INFO_IS_NULL = 40 "MBeanInfo is null, could not aquire MBean Meta Data!"; 41 static final String EXCEPTION_OCCURED = 42 "Exception occurred in the target MBean method."; 43 static final String COULDNT_GEN_WSDL = "Could not generate WSDL document"; 44 static final String INTROSPECTION_EXCEPTION = "Could not introspect mbean."; 45 } | Popular Tags |