1 /*2 * Generated by XDoclet - Do not edit!3 */4 package test.interfaces;5 6 /**7 * Remote interface for Person.8 * @xdoclet-generated at 16-04-059 * @copyright The XDoclet Team10 * @author XDoclet11 * @version 1.2.312 */13 public interface Person14 extends javax.ejb.EJBObject 15 {16 17 public void setId( java.lang.String id )18 throws java.rmi.RemoteException ;19 20 /**21 * Name of the person.22 */23 public java.lang.String getName( )24 throws java.rmi.RemoteException ;25 26 /**27 * FirstName of the person.28 */29 public java.lang.String getFirstName( )30 throws java.rmi.RemoteException ;31 32 public void setFirstName( java.lang.String firstName )33 throws java.rmi.RemoteException ;34 35 /**36 * phone of the person.37 */38 public java.lang.String getPhone( )39 throws java.rmi.RemoteException ;40 41 public void setPhone( java.lang.String phone )42 throws java.rmi.RemoteException ;43 44 /**45 * fax of the person.46 */47 public java.lang.String getFax( )48 throws java.rmi.RemoteException ;49 50 public void setFax( java.lang.String fax )51 throws java.rmi.RemoteException ;52 53 public void talkTo( )54 throws java.rmi.RemoteException ;55 56 /**57 * The creation-date of the entity. This field is purely to track when this entity was created, and should be set in ejbCreate (<code>setCreationDate(new Date());</code>. It is not included in the value object. <p>We use the qualified name here because XDoclet doesn't copy imports from base classes into the generated interfaces.</p>58 */59 public java.util.Date getCreationDate( )60 throws java.rmi.RemoteException ;61 62 public void setCreationDate( java.util.Date creationDate )63 throws java.rmi.RemoteException ;64 65 }66