ate 2004/11/11 19:19:28
Modified: components/security/src/java/org/apache/jetspeed/security/om/impl
InternalCredentialImpl.java
Log:
JS2-151 feature: password history implemented (item 3)
Revision Changes Path
1.4 +0 -17
jakarta-jetspeed-2/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java
Index: InternalCredentialImpl.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/components/security/src/java/org/apache/jetspeed/security/om/impl/InternalCredentialImpl.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- InternalCredentialImpl.java 12 Nov 2004 03:17:46 -0000 1.3
+++ InternalCredentialImpl.java 12 Nov 2004 03:19:28 -0000 1.4
@@ -18,7 +18,6 @@
import java.sql.Timestamp;
import org.apache.jetspeed.security.om.InternalCredential;
-import org.apache.jetspeed.util.HashCodeBuilder;
/**
* <p>[EMAIL PROTECTED] InternalCredential} interface implementation.</p>
@@ -325,22 +324,6 @@
this.lastLogonDate = lastLogonDate;
}
- /**
- * @see java.lang.Object#hashCode()
- */
- public int hashCode()
- {
- HashCodeBuilder hasher = new HashCodeBuilder(1, 3);
- hasher.append(getPrincipalId());
- hasher.append(getCreationDate().getTime());
- if (getClassname() != null)
- {
- hasher.append(getClassname());
- }
- return hasher.toHashCode();
- }
-
-
/**
* <p>Compares this [EMAIL PROTECTED] InternalCredential} to the
provided credential
* and check if they are equal.</p>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]