You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2014/03/16 10:12:15 UTC

svn commit: r1578005 - /directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java

Author: elecharny
Date: Sun Mar 16 09:12:15 2014
New Revision: 1578005

URL: http://svn.apache.org/r1578005
Log:
Added the missing methods in the interface

Modified:
    directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java

Modified: directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java?rev=1578005&r1=1578004&r2=1578005&view=diff
==============================================================================
--- directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java (original)
+++ directory/shared/trunk/ldap/extras/codec-api/src/main/java/org/apache/directory/api/ldap/extras/extended/PwdModifyRequest.java Sun Mar 16 09:12:15 2014
@@ -48,13 +48,37 @@ public interface PwdModifyRequest extend
 
 
     /**
+     * Set the user identity
+     * 
+     * @param the userIdentity to set
+     */
+    void setUserIdentity( byte[] userIdentity );
+
+
+    /**
      * @return the oldPassword
      */
     byte[] getOldPassword();
 
 
     /**
+     * Set the old password
+     * 
+     * @param the oldPassword to set
+     */
+    void setOldPassword( byte[] oldPassword );
+
+
+    /**
      * @return the newPassword
      */
     byte[] getNewPassword();
+
+
+    /**
+     * Set a new password
+     * 
+     * @param the new password to set
+     */
+    void setNewPassword( byte[] newPassword );
 }