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

Nicolas Capponi
24.43.2014 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf
opendj3-server-dev/src/server/org/opends/server/backends/task/FailedDependencyAction.java
@@ -22,10 +22,11 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 */
package org.opends.server.backends.task;
import org.opends.messages.Message;
import org.forgerock.i18n.LocalizableMessage;
import static org.opends.messages.TaskMessages.*;
@@ -104,18 +105,18 @@
    }
  }
  private Message name;
  private LocalizableMessage name;
  /**
   * Gets the display name of this action.
   *
   * @return Message representing the name of this action
   * @return LocalizableMessage representing the name of this action
   */
  public Message getDisplayName() {
  public LocalizableMessage getDisplayName() {
    return name;
  }
  private FailedDependencyAction(Message name) {
  private FailedDependencyAction(LocalizableMessage name) {
    this.name = name;
  }
}