All Downloads are FREE. Search and download functionalities are using the official Maven repository.

persistence.BestBuyProductRepository Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package persistence;

import domain.BestBuyProduct;
import java.util.List;

/**
 * BestBuyProductRepository represents an immutable repository of bestbuy
 * products.
 * 
 * @author jmdavril
 */
public interface BestBuyProductRepository {

    /**
     * @requires categoryId != null
     * @return the list of bestbuy products from the bestbuy product category
     *         identified by categoryId
     */
    List findAllProductsForCategory(String categoryId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy