mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
26.21.2007 5ceb2e9601d2501d021d0c61188ec913076555a0
opends/src/server/org/opends/server/core/SASLConfigManager.java
@@ -126,7 +126,7 @@
      if (handlerConfiguration.isEnabled())
      {
        String className = handlerConfiguration.getHandlerClass();
        String className = handlerConfiguration.getJavaClass();
        try
        {
          SASLMechanismHandler handler = loadHandler(className,
@@ -156,7 +156,7 @@
    {
      // Get the name of the class and make sure we can instantiate it as a SASL
      // mechanism handler.
      String className = configuration.getHandlerClass();
      String className = configuration.getJavaClass();
      try
      {
        loadHandler(className, configuration, false);
@@ -195,7 +195,7 @@
    // Get the name of the class and make sure we can instantiate it as a SASL
    // mechanism handler.
    String className = configuration.getHandlerClass();
    String className = configuration.getJavaClass();
    try
    {
      handler = loadHandler(className, configuration, true);
@@ -266,7 +266,7 @@
    {
      // Get the name of the class and make sure we can instantiate it as a SASL
      // mechanism handler.
      String className = configuration.getHandlerClass();
      String className = configuration.getJavaClass();
      try
      {
        loadHandler(className, configuration, false);
@@ -321,7 +321,7 @@
    // then we'll at least need to indicate that administrative action is
    // required.  If the handler is disabled, then instantiate the class and
    // initialize and register it as a SASL mechanism handler.
    String className = configuration.getHandlerClass();
    String className = configuration.getJavaClass();
    if (existingHandler != null)
    {
      if (! className.equals(existingHandler.getClass().getName()))
@@ -384,7 +384,7 @@
      SASLMechanismHandlerCfgDefn definition =
           SASLMechanismHandlerCfgDefn.getInstance();
      ClassPropertyDefinition propertyDefinition =
           definition.getHandlerClassPropertyDefinition();
           definition.getJavaClassPropertyDefinition();
      Class<? extends SASLMechanismHandler> handlerClass =
           propertyDefinition.loadClass(className, SASLMechanismHandler.class);
      SASLMechanismHandler handler = handlerClass.newInstance();