1 22 package org.jboss.test.cmp2.commerce; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 public interface User extends EJBObject 28 { 29 public String getUserId() throws RemoteException ; 30 31 public String getUserName() throws RemoteException ; 32 public void setUserName(String name) throws RemoteException ; 33 34 public String getEmail() throws RemoteException ; 35 public void setEmail(String email) throws RemoteException ; 36 37 public boolean getSendSpam() throws RemoteException ; 38 public void setSendSpam(boolean sendSpam) throws RemoteException ; 39 } 40 | Popular Tags |