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

import java.rmi.RemoteException;
import javax.ejb.CreateException;

/**
 *      
 *   @author Rickard Oberg
 *   @author $Author: starksm $
 *   @version $Revision: 1.2.32.2 $
 */
public class AccountData
   implements java.io.Serializable
{
   // Constants -----------------------------------------------------
   static final long serialVersionUID = -1514857573601018681L; 
   // Attributes ----------------------------------------------------
   public String id;
   public float balance;
   public Customer owner;
   
   // Static --------------------------------------------------------

   // Constructors --------------------------------------------------
   
   // Public --------------------------------------------------------
   public String getId()
   {
      return id;
   }
   
   public void setId(String id)
   {
      this.id = id;
   }
   
   public float getBalance()
   {
      return balance;
   }
   
   public void setBalance(float balance)
   {
      this.balance = balance;
   }
   
   public Customer getOwner()
   {
      return owner;
   }
   
   public void setOwner(Customer owner)
   {
      this.owner = owner;
   }
}

/*
 *   $Id: AccountData.java,v 1.2.32.2 2005/04/06 16:25:04 starksm Exp $
 *   Currently locked by:$Locker:  $
 *   Revision:
 *   $Log: AccountData.java,v $
 *   Revision 1.2.32.2  2005/04/06 16:25:04  starksm
 *   Fix the license header
 *
 *   Revision 1.2.32.1  2005/04/03 07:26:22  starksm
 *   Add the missing serialVersionUIDs
 *
 *   Revision 1.2  2001/01/07 23:14:35  peter
 *   Trying to get JAAS to work within test suite.
 *
 *   Revision 1.1.1.1  2000/06/21 15:52:38  oberg
 *   Initial import of jBoss test. This module contains CTS tests, some simple examples, and small bean suites.
 *
 *
 *  
 */