01: package com.odal.petstore.domain; 02: 03: import com.odal.petstore.persistence.gen.bean.ProductPoBean; 04: 05: /** 06: * @author Gennady Krizhevsky 07: */ 08: public class Product extends ProductPoBean { 09: public Product() { 10: } 11: 12: public Product(String productId) { 13: super(productId); 14: } 15: }