1 22 package org.jboss.ejb3.test.bank; 23 24 29 public class AccountData implements java.io.Serializable  30 { 31 33 public String id; 35 36 public float balance; 37 38 public Customer owner; 39 40 42 44 public String getId() 46 { 47 return id; 48 } 49 50 public void setId(String id) 51 { 52 this.id = id; 53 } 54 55 public float getBalance() 56 { 57 return balance; 58 } 59 60 public void setBalance(float balance) 61 { 62 this.balance = balance; 63 } 64 65 public Customer getOwner() 66 { 67 return owner; 68 } 69 70 public void setOwner(Customer owner) 71 { 72 this.owner = owner; 73 } 74 } 75 76 93 | Popular Tags |