package org.jboss.mx.modelmbean;
public interface ModelMBeanConstants
{
String GENERIC_MODELMBEAN_NOTIFICATION = "jmx.modelmbean.generic";
String NAME = "name";
String DESCRIPTOR_TYPE = "descriptorType";
String CLASS = "class";
String CURRENCY_TIME_LIMIT = "currencyTimeLimit";
String DISPLAY_NAME = "displayName";
String LAST_UPDATED_TIME_STAMP = "lastUpdatedTimeStamp";
String LOG = "log";
String LOG_FILE = "logFile";
String PERSIST_POLICY = "persistPolicy";
String PERSIST_PERIOD = "persistPeriod";
String PRESENTATION_STRING = "presentationString";
String VISIBILITY = "visibility";
String PERSIST_LOCATION = "persistLocation";
String PERSIST_NAME = "persistName";
String EXPORT = "export";
String CACHED_VALUE = "value"; String ATTRIBUTE_VALUE = "attributeValue"; String DEFAULT = "default"; String GET_METHOD = "getMethod";
String SET_METHOD = "setMethod";
String PROTOCOL_MAP = "protocolMap";
String ROLE = "role";
String TARGET_OBJECT = "targetObject";
String TARGET_TYPE = "targetType";
String SEVERITY = "severity";
String MESSAGE_ID = "messageId";
String PP_NEVER = "Never";
String PP_ON_TIMER = "OnTimer";
String PP_ON_UPDATE = "OnUpdate";
String PP_NO_MORE_OFTEN_THAN = "NoMoreOftenThan";
String PP_ALWAYS = "Always";
String[] PERSIST_POLICIES = new String[]
{
ModelMBeanConstants.PP_NEVER,
ModelMBeanConstants.PP_ON_TIMER,
ModelMBeanConstants.PP_ON_UPDATE,
ModelMBeanConstants.PP_NO_MORE_OFTEN_THAN,
ModelMBeanConstants.PP_ALWAYS
};
String SEVERITY_UNKNOWN = "0";
String SEVERITY_NON_RECOVERABLE = "1";
String SEVERITY_CRITICAL = "2";
String SEVERITY_MAJOR = "3";
String SEVERITY_MINOR = "4";
String SEVERITY_WARNING = "5";
String SEVERITY_NORMAL = "6";
String MBEAN_DESCRIPTOR = "mbean";
String ATTRIBUTE_DESCRIPTOR = "attribute";
String CONSTRUCTOR_DESCRIPTOR = "constructor";
String OPERATION_DESCRIPTOR = "operation";
String NOTIFICATION_DESCRIPTOR = "notification";
String ROLE_CONSTRUCTOR = "constructor";
String ROLE_GETTER = "getter";
String ROLE_SETTER = "setter";
String ROLE_OPERATION = "operation";
String HIGH_VISIBILITY = "1";
String NORMAL_VISIBILITY = "2";
String LOW_VISIBILITY = "3";
String MINIMAL_VISIBILITY = "4";
String CACHE_NEVER = "-1";
long CACHE_NEVER_LIMIT = -1;
String CACHE_ALWAYS = "0";
long CACHE_ALWAYS_LIMIT = 0;
String ACTION = "ACTION";
String ACTION_INFO = "ACTION_INFO";
String INFO = "INFO";
String OBJECT_REF = "ObjectReference";
String ALL_DESCRIPTORS = null;
String LAST_RETURNED_TIME_STAMP = "lastReturnedTimestamp";
String LAST_UPDATED_TIME_STAMP2 = "lastUpdatedTimeStamp2";
String INTERCEPTORS = "interceptors";
String PERSIST_INFO = "persistmbeaninfo";
String RESOURCE_CLASS = "resourceClass";
String PERSISTENCE_MANAGER = "persistence-manager";
String OBJECT_NAME = "objectname";
String DELEGATING_PM_SERVICE_DESCRIPTOR = "attribute-persistence-service";
String DELEGATING_PM_SERVICE_DEFAULT_VALUE = "jboss:service=AttributePersistenceService";
String DELEGATING_PM_OPERATION_DESCRIPTOR = "attribute-persistence-operation";
String DELEGATING_PM_OPERATION_DEFAULT_VALUE = "apmCreate";
final String MBEAN_SERVER_INJECTION_TYPE = "MBeanServerType";
final String MBEAN_INFO_INJECTION_TYPE = "MBeanInfoType";
final String OBJECT_NAME_INJECTION_TYPE = "ObjectNameType";
boolean IS_READABLE = true;
boolean IS_WRITABLE = true;
boolean IS_IS = true;
}