1 4 package com.opensymphony.webwork.example.ajax.catalog; 5 6 import java.util.Set ; 7 8 13 public interface Catalog extends Identifiable { 14 17 Set findAllCategories(); 18 19 24 Set findAllProducts(); 25 26 32 Category findCategoryForId(Integer id); 33 34 40 Product findProductById(Integer productId); 41 42 43 49 Set findProductsByCategory(Category category); 50 } 51 52 | Popular Tags |