Author: mdisabatino
Date: Wed Jun 12 12:33:33 2013
New Revision: 1492173

URL: http://svn.apache.org/r1492173
Log:
Fix Retrieving Virtual Attribute from cache.Enabled transient members

Modified:
    
syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/util/VirAttrCacheKey.java

Modified: 
syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/util/VirAttrCacheKey.java
URL: 
http://svn.apache.org/viewvc/syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/util/VirAttrCacheKey.java?rev=1492173&r1=1492172&r2=1492173&view=diff
==============================================================================
--- 
syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/util/VirAttrCacheKey.java
 (original)
+++ 
syncope/branches/1_1_X/core/src/main/java/org/apache/syncope/core/util/VirAttrCacheKey.java
 Wed Jun 12 12:33:33 2013
@@ -64,16 +64,16 @@ public class VirAttrCacheKey {
 
     @Override
     public boolean equals(final Object obj) {
-        return EqualsBuilder.reflectionEquals(this, obj);
+        return EqualsBuilder.reflectionEquals(this, obj, true);
     }
 
     @Override
     public int hashCode() {
-        return HashCodeBuilder.reflectionHashCode(this);
+        return HashCodeBuilder.reflectionHashCode(this, true);
     }
 
     @Override
     public String toString() {
-        return ReflectionToStringBuilder.toString(this, 
ToStringStyle.MULTI_LINE_STYLE);
+        return ReflectionToStringBuilder.toString(this, 
ToStringStyle.MULTI_LINE_STYLE, true);
     }
 }


Reply via email to