<?xml version="1.0" encoding="ISO-8859-1"?>


  
  <bean>
  <name>Product</name>
  <comments>This bean represents a product that the company offers to its customers</comments>

      <property>
      <name>code</name>
      <type>int</type>
      <comments>the product inventory code</comments>
      </property>

      <property>
      <name>name</name>
      <type>String</type>
      <comments>the product name</comments>
      </property>

      <property>
      <name>testedOnAnimals</name>
      <type>boolean</type>
      <comments>the flag that indicates if the product was tested on animals</comments>
      </property>

      <property>
      <name>availableSince</name>
      <type>java.util.Date</type>
      <comments>the date when the company started offering this product to its customers</comments>
      </property>

  </bean>
