1 22 package org.jboss.test.bankiiop.interfaces; 23 24 30 public class AccountData 31 implements java.io.Serializable  32 { 33 35 public String id; 37 public float balance; 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 99 | Popular Tags |