KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Jt > ejb > examples > bmp > Member


1
2 package Jt.ejb.examples.bmp;
3
4 /**
5  * Remote interface for Member (the local interface is being used).
6  */

7 public interface Member
8    extends javax.ejb.EJBObject JavaDoc
9 {
10    //public static final String COMP_NAME="java:comp/env/ejb/JtStateful";
11
//public static final String JNDI_NAME="JtStateful";
12

13
14
15    public String JavaDoc getEmail()
16       throws java.rmi.RemoteException JavaDoc;
17
18    public void setEmail (String JavaDoc email)
19       throws java.rmi.RemoteException JavaDoc;
20
21 /*
22    public String getFirstname()
23       throws java.rmi.RemoteException;
24
25    public void setFirstname (String firstName)
26       throws java.rmi.RemoteException;
27
28    public String getLastname()
29       throws java.rmi.RemoteException;
30
31    public void setLastname (String lastname)
32       throws java.rmi.RemoteException;
33 */

34 }
35
Popular Tags