| java.lang.Object discRack.business.person.PersonFactory
PersonFactory | public class PersonFactory (Code) | | Used to find the instance of Person.
|
Method Summary | |
public static Person | findPerson(String username) The findPerson method performs a database query to
return a Person object
representing the row in the person table
that matches login name with the username.
username, the login name of the person.the person. |
findPerson | public static Person findPerson(String username) throws DiscRackBusinessException(Code) | | The findPerson method performs a database query to
return a Person object
representing the row in the person table
that matches login name with the username.
username, the login name of the person.the person. null if there isn't a person associatedthe username exception: DiscRackBusinessException - if there is a problem retrieving person information. |
|
|