package auction.dao; import auction.model.Category; import java.util.List; /** * Business DAO operations related to the Category entity. * * @see auction.model.Category * * @author Christian Bauer */ public interface CategoryDAO extends GenericDAO { public List findAll(boolean onlyRootCategories); }