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

matthew_swift
30.03.2008 505d54cfc14d102275c2de3dac2652b1fb024fb7
Correct syntax for workflow base-dn property.
2 files modified
6 ■■■■ changed files
opends/src/admin/defn/org/opends/server/admin/std/WorkflowConfiguration.xml 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/core/WorkflowConfigManager.java 4 ●●●● patch | view | raw | blame | history
opends/src/admin/defn/org/opends/server/admin/std/WorkflowConfiguration.xml
@@ -115,7 +115,7 @@
      .
    </adm:synopsis>
    <adm:syntax>
      <adm:string />
      <adm:dn />
    </adm:syntax>
    <adm:profile name="ldap">
      <ldap:attribute>
opends/src/server/org/opends/server/core/WorkflowConfigManager.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2007 Sun Microsystems, Inc.
 *      Portions Copyright 2007-2008 Sun Microsystems, Inc.
 */
package org.opends.server.core;
@@ -297,7 +297,7 @@
      WorkflowElement.getWorkflowElement(rootWorkflowElementID);
    // Get the base DN targeted by the workflow
    DN baseDN = DN.decode(workflowCfg.getBaseDN());
    DN baseDN = workflowCfg.getBaseDN();
    // Create the workflow and register it with the server
    WorkflowImpl workflowImpl =