Examples of dn()


Examples of org.nasutekds.server.admin.std.server.BackendCfg.dn()

            continue;
          }
        }
        else
        {
          backupDir = new BackupDirectory(backupDirPath, configEntry.dn());
        }
      }
      else
      {
        try
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.BackendCfg.dn()

          }

          continue;
        }

        backupDir = new BackupDirectory(backupDirPath, configEntry.dn());
      }


      // Create a backup configuration and determine whether the requested
      // backup can be performed using the selected backend.
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.BackendCfg.dn()

    {
      // Get the handler's configuration.
      // This will decode and validate its properties.
      BackendCfg backendCfg = root.getBackend(name);

      DN backendDN = backendCfg.dn();
      String backendID = backendCfg.getBackendId();

      // Register as a change listener for this backend so that we can be
      // notified when it is disabled or enabled.
      backendCfg.addChangeListener(this);
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.CertificateMapperCfg.dn()

        String className = mapperConfiguration.getJavaClass();
        try
        {
          CertificateMapper mapper = loadMapper(className, mapperConfiguration,
                                                true);
          certificateMappers.put(mapperConfiguration.dn(), mapper);
          DirectoryServer.registerCertificateMapper(mapperConfiguration.dn(),
                                                    mapper);
        }
        catch (InitializationException ie)
        {
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.CertificateMapperCfg.dn()

        try
        {
          CertificateMapper mapper = loadMapper(className, mapperConfiguration,
                                                true);
          certificateMappers.put(mapperConfiguration.dn(), mapper);
          DirectoryServer.registerCertificateMapper(mapperConfiguration.dn(),
                                                    mapper);
        }
        catch (InitializationException ie)
        {
          logError(ie.getMessageObject());
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.ConnectionHandlerCfg.dn()

        ConnectionHandler<? extends ConnectionHandlerCfg> connectionHandler =
             getConnectionHandler(config);

        // Put this connection handler in the hash so that we will be
        // able to find it if it is altered.
        connectionHandlers.put(config.dn(), connectionHandler);

        // Register the connection handler with the Directory Server.
        DirectoryServer.registerConnectionHandler(connectionHandler);
      }
    }
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.EntryCacheCfg.dn()

      // Check if there is another entry cache installed at the same level.
      if (!cacheOrderMap.isEmpty()) {
        if (cacheOrderMap.containsKey(configuration.getCacheLevel())) {
          // Log error and skip this cache.
          logError(ERR_CONFIG_ENTRYCACHE_CONFIG_LEVEL_NOT_ACCEPTABLE.get(
            String.valueOf(configuration.dn()),
            configuration.getCacheLevel()));
          continue;
        }
      }
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.ExtendedOperationHandlerCfg.dn()

        // Load the handler's implementation class and initialize it.
        ExtendedOperationHandler handler = getHandler(config);

        // Put this handler in the hash map so that we will be able to find
        // it if it is deleted or disabled.
        handlers.put(config.dn(), handler);
      }
    }
  }

  /**
 
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.ExtensionCfg.dn()

        String className = extensionConfig.getJavaClass();
        try
        {
          Extension extension =
               loadExtension(className, extensionConfig, true);
          extensions.put(extensionConfig.dn(), extension);
          DirectoryServer.registerExtension(extensionConfig.dn(),
                                                     extension);
        }
        catch (InitializationException ie)
        {
View Full Code Here

Examples of org.nasutekds.server.admin.std.server.GroupImplementationCfg.dn()

      {
        String className = groupConfiguration.getJavaClass();
        try
        {
          Group group = loadGroup(className, groupConfiguration, true);
          groupImplementations.put(groupConfiguration.dn(), group);
        }
        catch (InitializationException ie)
        {
          logError(ie.getMessageObject());
          continue;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.