remove salt from PasswordAware interface

This commit is contained in:
Sebastian Sdorra
2012-02-17 21:27:12 +01:00
parent 694bbbd9f0
commit c069330796

View File

@@ -48,15 +48,6 @@ public interface PasswordAware
*/
public String getPassword();
/**
* Return a string representation of the salt used for the password hash or
* returns null if no salt is used.
*
*
* @return string representation of a salt or null
*/
public String getSalt();
//~--- set methods ----------------------------------------------------------
/**
@@ -66,12 +57,4 @@ public interface PasswordAware
* @param password encrypted password
*/
public void setPassword(String password);
/**
* Sets the salt used to encrypt the password
*
*
* @param salt string representation of the salt
*/
public void setSalt(String salt);
}