1 /*2 * Copyright (c) 2005 Your Corporation. All Rights Reserved.3 */4 package com.opensymphony.webwork.example.ajax.catalog;5 6 /**7 * Product8 *9 * @author Jason Carreira <jcarreira@eplus.com>10 */11 public interface Product extends Identifiable {12 double getPrice();13 14 String getDescription();15 16 Category getCategory();17 }18