/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.aop.bean;

/**
 * @author <a href="mailto:adrian@jboss.com">Adrian Brock</a>
 * @version $Revision: 1.1 $
 */
public class Temperature
{
   private int temperature = 0;

   public int getTemperature()
   {
      return temperature;
   }

   public void setTemperature(int temperature) 
   {
      this.temperature = temperature;
   }

   public String toString()
   {
      return "Temperature=" + temperature;
   }
}