com.primix.vlib.ejb
Interface IPerson

All Superinterfaces:
EJBObject, IEntityBean, java.rmi.Remote

public interface IPerson
extends IEntityBean

Remote interface for the Person entity bean.

Version:
$Id: IPerson.java,v 1.8 2001/08/27 22:19:12 hship Exp $
Author:
Howard Ship

Method Summary
 java.lang.String getEmail()
           
 java.lang.String getFirstName()
           
 java.sql.Timestamp getLastAccess()
           
 java.lang.String getLastName()
           
 java.lang.String getNaturalName()
          Returns the natural concatination of the first and last name, or just the last name if there is no first name.
 java.lang.String getPassword()
           
 boolean isAdmin()
           
 boolean isLockedOut()
           
 boolean isVerified()
           
 void setAdmin(boolean value)
           
 void setEmail(java.lang.String value)
           
 void setFirstName(java.lang.String value)
           
 void setLastAccess(java.sql.Timestamp value)
           
 void setLastName(java.lang.String value)
           
 void setLockedOut(boolean value)
           
 void setPassword(java.lang.String value)
           
 void setVerified(boolean value)
           
 
Methods inherited from interface com.primix.vlib.ejb.IEntityBean
getEntityAttributes, updateEntityAttributes
 
Methods inherited from interface javax.ejb.EJBObject
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove
 

Method Detail

setLastName

public void setLastName(java.lang.String value)
                 throws java.rmi.RemoteException

getLastName

public java.lang.String getLastName()
                             throws java.rmi.RemoteException

setFirstName

public void setFirstName(java.lang.String value)
                  throws java.rmi.RemoteException

getFirstName

public java.lang.String getFirstName()
                              throws java.rmi.RemoteException

setPassword

public void setPassword(java.lang.String value)
                 throws java.rmi.RemoteException

getPassword

public java.lang.String getPassword()
                             throws java.rmi.RemoteException

setEmail

public void setEmail(java.lang.String value)
              throws java.rmi.RemoteException

getEmail

public java.lang.String getEmail()
                          throws java.rmi.RemoteException

isAdmin

public boolean isAdmin()
                throws java.rmi.RemoteException

setAdmin

public void setAdmin(boolean value)
              throws java.rmi.RemoteException

isLockedOut

public boolean isLockedOut()
                    throws java.rmi.RemoteException

setLockedOut

public void setLockedOut(boolean value)
                  throws java.rmi.RemoteException

isVerified

public boolean isVerified()
                   throws java.rmi.RemoteException

setVerified

public void setVerified(boolean value)
                 throws java.rmi.RemoteException

getNaturalName

public java.lang.String getNaturalName()
                                throws java.rmi.RemoteException
Returns the natural concatination of the first and last name, or just the last name if there is no first name.

setLastAccess

public void setLastAccess(java.sql.Timestamp value)
                   throws java.rmi.RemoteException

getLastAccess

public java.sql.Timestamp getLastAccess()
                                 throws java.rmi.RemoteException