KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > PersonLocal


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package test.interfaces;
5
6 /**
7  * Local interface for Person.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface PersonLocal
14    extends javax.ejb.EJBLocalObject JavaDoc
15 {
16
17    public void setId( java.lang.String JavaDoc id ) ;
18
19    /**
20     * Name of the person.
21     */

22    public java.lang.String JavaDoc getName( ) ;
23
24    /**
25     * FirstName of the person.
26     */

27    public java.lang.String JavaDoc getFirstName( ) ;
28
29    public void setFirstName( java.lang.String JavaDoc firstName ) ;
30
31    /**
32     * phone of the person.
33     */

34    public java.lang.String JavaDoc getPhone( ) ;
35
36    public void setPhone( java.lang.String JavaDoc phone ) ;
37
38    /**
39     * fax of the person.
40     */

41    public java.lang.String JavaDoc getFax( ) ;
42
43    public void setFax( java.lang.String JavaDoc fax ) ;
44
45    public void talkTo( ) ;
46
47    /**
48     * 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>
49     */

50    public java.util.Date JavaDoc getCreationDate( ) ;
51
52    public void setCreationDate( java.util.Date JavaDoc creationDate ) ;
53
54 }
55
Popular Tags