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

import java.io.Serializable;

/**
 * @author BenvenS
 * 
 * @jboss-net.xml-schema urn="hello:Greeting"
 */
public class GreetingTO implements Serializable
{
   static final long serialVersionUID = -4984982618001527408L;
   private String greeting;

   /**
    * @return Returns the greeting.
    */
   public String getGreeting()
   {
      return greeting;
   }

   /**
    * @param greeting The greeting to set.
    */
   public void setGreeting(String greeting)
   {
      this.greeting = greeting;
   }
}