| |
|
| java.lang.Object transactionsDiscRack.business.person.PersonImpl
PersonImpl | public class PersonImpl implements Person(Code) | | Represents a person.
|
Constructor Summary | |
public | PersonImpl() The public constructor. | public | PersonImpl(PersonDO thePerson) |
PersonImpl | public PersonImpl()(Code) | | The public constructor.
|
getFirstname | public String getFirstname()(Code) | | Gets the firstname for the person
the firstname. exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
getHandle | public String getHandle()(Code) | | Gets the object id for the person
the object id. exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
getLastname | public String getLastname()(Code) | | Gets the lastname for the person
the lastname. exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
getLogin | public String getLogin()(Code) | | Gets the login name for the person
the login name. exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
getPassword | public String getPassword()(Code) | | Gets the password for the person
the password. exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
save | public void save(DBTransaction transaction) throws TransactionsDiscRackBusinessException, AssertionDataObjectException(Code) | | Commits all changes to the database.
exception: DiscRackBusinessException - if an error occurs retrieving data (usually due to anunderlying data layer error). |
setFirstname | public void setFirstname(String firstname)(Code) | | Sets the firstname for the person.
Parameters: firstname - exception: DiscRackBusinessException - if an error occurs setting the data (usually due to anunderlying data layer error). |
setLastname | public void setLastname(String lastname)(Code) | | Sets the lastname for the person.
Parameters: lastname - exception: DiscRackBusinessException - if an error occurs setting the data (usually due to anunderlying data layer error). |
setLogin | public void setLogin(String login)(Code) | | Sets the login name for the person.
Parameters: login - login name. exception: DiscRackBusinessException - if an error occurs setting the data (usually due to anunderlying data layer error). |
setPassword | public void setPassword(String password)(Code) | | Sets the password for the person.
Parameters: password - exception: DiscRackBusinessException - if an error occurs setting the data (usually due to anunderlying data layer error). |
|
|
|