1 4 package test.interfaces; 5 6 13 public interface Customer 14 extends test.interfaces.Person 15 { 16 19 public void talkTo( ) 20 throws java.rmi.RemoteException ; 21 22 25 public void talkTo( java.lang.String somebody ) 26 throws java.rmi.RemoteException ; 27 28 31 public java.util.Collection getAccounts( ) 32 throws java.rmi.RemoteException ; 33 34 37 public void addAccount( test.interfaces.AccountValue added ) 38 throws javax.ejb.FinderException , java.rmi.RemoteException ; 39 40 public void setCustomerNormalValue( test.interfaces.CustomerNormalValue value ) 41 throws test.interfaces.ApplicationException, java.rmi.RemoteException ; 42 43 public test.interfaces.CustomerNormalValue getCustomerNormalValue( ) 44 throws java.rmi.RemoteException ; 45 46 49 public test.interfaces.CustomerData getData( ) 50 throws java.rmi.RemoteException ; 51 52 55 public java.util.Collection getShippingAddresses( ) 56 throws java.rmi.RemoteException ; 57 58 public void setId( java.lang.String id ) 59 throws java.rmi.RemoteException ; 60 61 64 public java.lang.String getName( ) 65 throws java.rmi.RemoteException ; 66 67 70 public java.lang.String getFirstName( ) 71 throws java.rmi.RemoteException ; 72 73 public void setFirstName( java.lang.String firstName ) 74 throws java.rmi.RemoteException ; 75 76 79 public java.lang.String getPhone( ) 80 throws java.rmi.RemoteException ; 81 82 public void setPhone( java.lang.String phone ) 83 throws java.rmi.RemoteException ; 84 85 88 public java.lang.String getFax( ) 89 throws java.rmi.RemoteException ; 90 91 public void setFax( java.lang.String fax ) 92 throws java.rmi.RemoteException ; 93 94 97 public java.util.Date getCreationDate( ) 98 throws java.rmi.RemoteException ; 99 100 public void setCreationDate( java.util.Date creationDate ) 101 throws java.rmi.RemoteException ; 102 103 } 104 | Popular Tags |