KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > Person


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-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

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

23    public java.lang.String JavaDoc getName( )
24       throws java.rmi.RemoteException JavaDoc;
25
26    /**
27     * FirstName of the person.
28     */

29    public java.lang.String JavaDoc getFirstName( )
30       throws java.rmi.RemoteException JavaDoc;
31
32    public void setFirstName( java.lang.String JavaDoc firstName )
33       throws java.rmi.RemoteException JavaDoc;
34
35    /**
36     * phone of the person.
37     */

38    public java.lang.String JavaDoc getPhone( )
39       throws java.rmi.RemoteException JavaDoc;
40
41    public void setPhone( java.lang.String JavaDoc phone )
42       throws java.rmi.RemoteException JavaDoc;
43
44    /**
45     * fax of the person.
46     */

47    public java.lang.String JavaDoc getFax( )
48       throws java.rmi.RemoteException JavaDoc;
49
50    public void setFax( java.lang.String JavaDoc fax )
51       throws java.rmi.RemoteException JavaDoc;
52
53    public void talkTo( )
54       throws java.rmi.RemoteException JavaDoc;
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 JavaDoc getCreationDate( )
60       throws java.rmi.RemoteException JavaDoc;
61
62    public void setCreationDate( java.util.Date JavaDoc creationDate )
63       throws java.rmi.RemoteException JavaDoc;
64
65 }
66
Popular Tags