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