1 15 package org.apache.tapestry.vlib.ejb; 16 17 import java.rmi.RemoteException ; 18 import java.sql.Timestamp ; 19 20 27 28 public interface IPerson extends IEntityBean 29 { 30 public void setLastName(String value) throws RemoteException ; 31 32 public String getLastName() throws RemoteException ; 33 34 public void setFirstName(String value) throws RemoteException ; 35 36 public String getFirstName() throws RemoteException ; 37 38 public void setPassword(String value) throws RemoteException ; 39 40 public String getPassword() throws RemoteException ; 41 42 public void setEmail(String value) throws RemoteException ; 43 44 public String getEmail() throws RemoteException ; 45 46 public boolean getAdmin() throws RemoteException ; 47 48 public void setAdmin(boolean value) throws RemoteException ; 49 50 public boolean getLockedOut() throws RemoteException ; 51 52 public void setLockedOut(boolean value) throws RemoteException ; 53 54 public void setLastAccess(Timestamp value) throws RemoteException ; 55 56 public Timestamp getLastAccess() throws RemoteException ; 57 } | Popular Tags |