org/sonews/storage/Storage.java
changeset 18 7e527fdf0fa8
parent 12 bb6990c0dd1a
child 24 2ff819fa5be1
     1.1 --- a/org/sonews/storage/Storage.java	Thu Aug 20 14:31:19 2009 +0200
     1.2 +++ b/org/sonews/storage/Storage.java	Fri Aug 21 17:33:15 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)