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: [email protected]
For additional commands, e-mail: [email protected]