You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rd...@apache.org on 2009/03/31 16:37:31 UTC

svn commit: r760462 - /james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java

Author: rdonkin
Date: Tue Mar 31 14:37:23 2009
New Revision: 760462

URL: http://svn.apache.org/viewvc?rev=760462&view=rev
Log:
Generified

Modified:
    james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java

Modified: james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java
URL: http://svn.apache.org/viewvc/james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java?rev=760462&r1=760461&r2=760462&view=diff
==============================================================================
--- james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java (original)
+++ james/imap/trunk/deployment/src/test/java/org/apache/james/mailboxmanager/torque/UserDetails.java Tue Mar 31 14:37:23 2009
@@ -23,15 +23,13 @@
 import java.util.HashSet;
 
 public class UserDetails {
-    private final String userName;
 
     private String password;
 
-    private final Collection subscriptions;
+    private final Collection<String> subscriptions;
 
     public UserDetails(final String userName) {
-        this.userName = userName;
-        this.subscriptions = new HashSet();
+        this.subscriptions = new HashSet<String>();
     }
 
     public String getPassword() {



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org