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

Ludovic Poitou
02.45.2010 7bdcb41c0f62967ec42d552f6002577dfb7019ca
sdk/src/org/opends/sdk/requests/PasswordModifyExtendedRequest.java
@@ -107,17 +107,6 @@
  /**
   * Returns the desired password for the user decoded as a UTF-8 string, or
   * {@code null} if a new password should be generated.
   *
   * @return The desired password for the user decoded as a UTF-8 string, or
   *         {@code null} if a new password should be generated.
   */
  String getNewPasswordAsString();
  /**
   * {@inheritDoc}
   */
  String getOID();
@@ -135,17 +124,6 @@
  /**
   * Returns the current password for the user, if known, decoded as a UTF-8
   * string.
   *
   * @return The current password for the user decoded as a UTF-8 string, or
   *         {@code null} if the password is not known.
   */
  String getOldPasswordAsString();
  /**
   * {@inheritDoc}
   */
  ExtendedResultDecoder<PasswordModifyExtendedResult> getResultDecoder();
@@ -222,7 +200,7 @@
   *           If this password modify extended request does not permit the new
   *           password to be set.
   */
  PasswordModifyExtendedRequest setNewPassword(String newPassword)
  PasswordModifyExtendedRequest setNewPassword(char[] newPassword)
      throws UnsupportedOperationException;
@@ -255,7 +233,7 @@
   *           If this password modify extended request does not permit the old
   *           password to be set.
   */
  PasswordModifyExtendedRequest setOldPassword(String oldPassword)
  PasswordModifyExtendedRequest setOldPassword(char[] oldPassword)
      throws UnsupportedOperationException;