1 2 package Jt.ejb.examples.bmp;3 4 /**5 * Remote interface for Member (the local interface is being used).6 */7 public interface Member8 extends javax.ejb.EJBObject 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 getEmail() 16 throws java.rmi.RemoteException ;17 18 public void setEmail (String email) 19 throws java.rmi.RemoteException ;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