Uses of Class
dk.netarkivet.harvester.datamodel.SeedList

Packages that use SeedList
dk.netarkivet.harvester.datamodel   
 

Uses of SeedList in dk.netarkivet.harvester.datamodel
 

Methods in dk.netarkivet.harvester.datamodel that return SeedList
 SeedList Domain.getSeedList(java.lang.String name)
          Get a specific seedlist previously added to this domain.
 

Methods in dk.netarkivet.harvester.datamodel that return types with arguments of type SeedList
 java.util.Iterator<SeedList> Domain.getAllSeedLists()
          Get all seedlists belonging to this domain.
 java.util.List<SeedList> Domain.getAllSeedListsAsSortedList(java.util.Locale loc)
          Gets all seedlists belonging to this domain.
 java.util.Iterator<SeedList> DomainConfiguration.getSeedLists()
          Get an iterator of seedlists used in this configuration.
 

Methods in dk.netarkivet.harvester.datamodel with parameters of type SeedList
 void Domain.addSeedList(SeedList seedlist)
          Adds a seed list to the domain.
 void DomainConfiguration.addSeedList(SeedList seedlist)
          Add a new seedlist to the configuration.
 void Domain.updateSeedList(SeedList seedlist)
          Update a seed list to the domain.
 

Method parameters in dk.netarkivet.harvester.datamodel with type arguments of type SeedList
 void DomainConfiguration.setSeedLists(java.util.List<SeedList> seedlists)
          Sets the used seedlists to the given list.
 

Constructor parameters in dk.netarkivet.harvester.datamodel with type arguments of type SeedList
DomainConfiguration(java.lang.String theConfigName, Domain domain, java.util.List<SeedList> seedlists, java.util.List<Password> passwords)
          Create a new configuration for a domain.