1 4 package test.interfaces; 5 6 13 public interface AccountLocal 14 extends javax.ejb.EJBLocalObject 15 { 16 19 public java.lang.Integer getId( ) ; 20 21 24 public void deposit( float amount ) ; 25 26 29 public void withdraw( float amount ) ; 30 31 34 public test.interfaces.Customer getOwner( ) ; 35 36 39 public float getBalance( ) ; 40 41 44 public test.interfaces.AccountData getData( ) ; 45 46 public test.interfaces.AccountValue getAccountValue( ) ; 47 48 public void setAccountValue( test.interfaces.AccountValue value ) ; 49 50 53 public java.lang.Integer getGeneratedPrimaryKey( ) ; 54 55 58 public java.util.Date getCreationDate( ) ; 59 60 public void setCreationDate( java.util.Date creationDate ) ; 61 62 } 63 | Popular Tags |