|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sourceforge.stripes.examples.bugzooky.biz.Person
public class Person
Represents a person to whom bugs can be assigned.
Constructor Summary | |
---|---|
Person()
Default constructor. |
|
Person(String username,
String password,
String first,
String last,
String email)
Constructs a well formed person. |
Method Summary | |
---|---|
boolean |
equals(Object obj)
Equality is determined to be when the ID numbers match. |
String |
getEmail()
Gets the person's email address. |
String |
getFirstName()
Gets the first name of the person. |
Integer |
getId()
Gets the ID of the person. |
String |
getLastName()
Gets the last name of the person. |
String |
getPassword()
Gets the person's unencrypted password. |
String |
getUsername()
Gets the username of the person. |
void |
setEmail(String email)
Sets the person's email address. |
void |
setFirstName(String firstName)
Sets the first name of the user. |
void |
setId(Integer id)
Sets the ID of the person. |
void |
setLastName(String lastName)
Sets the last name of the user. |
void |
setPassword(String password)
Sets the person's unencrypted password. |
void |
setUsername(String username)
Sets the username of the user. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Person()
public Person(String username, String password, String first, String last, String email)
Method Detail |
---|
public Integer getId()
public void setId(Integer id)
public String getUsername()
public void setUsername(String username)
public String getFirstName()
public void setFirstName(String firstName)
public String getLastName()
public void setLastName(String lastName)
public String getEmail()
public void setEmail(String email)
public String getPassword()
public void setPassword(String password)
public boolean equals(Object obj)
equals
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |