Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. public String getSecurityQ1() {
  2. return security1;
  3. }
  4.  
  5. public String getSecurityQ2() {
  6. return security2;
  7. }
  8.  
  9. public String getAnswer1() {
  10. return answer1;
  11. }
  12.  
  13. public String getAnswer2() {
  14. return answer2;
  15. }
  16.  
  17. public ValuableItem getItem() {
  18. return item;
  19. }
  20.  
  21. public String getUser() {
  22. return username;
  23. }
  24.  
  25. public String getPass() {
  26. return password;
  27. }
  28.  
  29. public int getTagID() {
  30. return tagID;
  31. }
  32.  
  33. public String getPhone() {
  34. return phoneNum;
  35. }
  36.  
  37. public String getActualName() {
  38. return actualName;
  39. }
  40.  
  41. public String getBirth() {
  42. return birth;
  43. }
  44.  
  45. public String getAddress() {
  46. return address;
  47. }
  48.  
  49. public String getCreated() {
  50. return created;
  51. }
  52.  
  53. public String getEmail() {
  54. return email;
  55. }
  56.  
  57. public void setUser(String user) {
  58. username = user;
  59. }
  60.  
  61. public void setPass(String pass) {
  62. password = pass;
  63. }
  64.  
  65. public void setPhone(String phone) {
  66. this.phoneNum = phone;
  67. }
  68.  
  69. public void setActualName(String actualName) {
  70. this.actualName = actualName;
  71. }
  72.  
  73. public void setBirth(String birth) {
  74. this.birth = birth;
  75. }
  76.  
  77. public void setAddress(String address) {
  78. this.address = address;
  79. }
  80.  
  81. public void setCreated(String created) {
  82. this.created = created;
  83. }
  84.  
  85. public void setEmail(String email) {
  86. this.email = email;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement