AccountData.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.bankiiop.interfaces; import java.rmi.RemoteException; import javax.ejb.CreateException; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.1.26.2 $ */ public class AccountData implements java.io.Serializable { // Constants ----------------------------------------------------- static final long serialVersionUID = -3179143627093287125L; // 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.1.26.2 2005/04/06 16:28:06 starksm Exp $ * Currently locked by:$Locker: $ * Revision: * $Log: AccountData.java,v $ * Revision 1.1.26.2 2005/04/06 16:28:06 starksm * Fix the license header * * Revision 1.1.26.1 2005/04/03 07:26:23 starksm * Add the missing serialVersionUIDs * * Revision 1.1 2002/03/15 22:36:28 reverbel * Initial version of the bank test for JBoss/IIOP. * * 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. * * * */
AccountData.java |