| | |
| | | * Portions Copyright 2006-2007 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.protocols.ldap; |
| | | import org.opends.messages.Message; |
| | | |
| | | |
| | | |
| | |
| | | |
| | | import static org.opends.server.loggers.debug.DebugLogger.*; |
| | | import org.opends.server.loggers.debug.DebugTracer; |
| | | import static org.opends.server.messages.MessageHandler.*; |
| | | import static org.opends.server.messages.ProtocolMessages.*; |
| | | import static org.opends.messages.ProtocolMessages.*; |
| | | import static org.opends.server.protocols.ldap.LDAPConstants.*; |
| | | |
| | | |
| | |
| | | // dynamically loaded from the configuration. Rather, it should be |
| | | // explicitly created and registered by the LDAP connection handler or an |
| | | // LDAP client connection. |
| | | int msgID = MSGID_LDAP_STATS_INVALID_MONITOR_INITIALIZATION; |
| | | String message = getMessage(msgID, String.valueOf(configuration.dn())); |
| | | throw new ConfigException(msgID, message); |
| | | Message message = ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION.get( |
| | | String.valueOf(configuration.dn())); |
| | | throw new ConfigException(message); |
| | | } |
| | | |
| | | |