1.1 --- a/org/sonews/storage/Storage.java Thu Aug 20 16:49:38 2009 +0200
1.2 +++ b/org/sonews/storage/Storage.java Thu Aug 20 16:57:38 2009 +0200
1.3 @@ -19,7 +19,6 @@
1.4 package org.sonews.storage;
1.5
1.6 import java.util.List;
1.7 -import javax.mail.internet.InternetAddress;
1.8 import org.sonews.feed.Subscription;
1.9 import org.sonews.util.Pair;
1.10
1.11 @@ -92,7 +91,14 @@
1.12 List<Channel> getGroups()
1.13 throws StorageBackendException;
1.14
1.15 - List<String> getGroupsForList(InternetAddress inetaddress)
1.16 + /**
1.17 + * Retrieves the collection of groupnames that are associated with the
1.18 + * given list address.
1.19 + * @param inetaddress
1.20 + * @return
1.21 + * @throws StorageBackendException
1.22 + */
1.23 + List<String> getGroupsForList(String listAddress)
1.24 throws StorageBackendException;
1.25
1.26 int getLastArticleNumber(Group group)