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

jdemendi
08.57.2007 58a50508676500a29b29075f66e454b113a08791
opends/src/server/org/opends/server/workflowelement/WorkflowElement.java
@@ -41,6 +41,10 @@
public abstract class WorkflowElement
{
  // The workflow element identifier.
  private String workflowElementID = null;
  /**
   * Indicates whether the workflow element encapsulates a private
   * local backend.
@@ -50,10 +54,13 @@
  /**
   * Creates a new instance of the workflow element.
   *
   * @param workflowElementID  the workflow element identifier as defined
   *                           in the configuration.
   */
  public WorkflowElement()
  public WorkflowElement(String workflowElementID)
  {
    // No implementation is required.
    this.workflowElementID = workflowElementID;
  }
@@ -78,4 +85,15 @@
  {
    return isPrivate;
  }
  /**
   * Provides the workflow element identifier.
   *
   * @return the worflow element identifier
   */
  public String getWorkflowElementID()
  {
    return workflowElementID;
  }
}