Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1.  
  2. public class User {
  3.  
  4.  
  5.  
  6. private String name;
  7. private String email;
  8. private String password;
  9. private String phone;
  10. private String company;
  11. private String type;
  12. private String position;
  13.  
  14. public String getName() {
  15. return name;
  16. }
  17.  
  18. public void setName(String name) {
  19. this.name = name;
  20. }
  21.  
  22. public String getEmail() {
  23. return email;
  24. }
  25.  
  26. public void setEmail(String email) {
  27. this.email = email;
  28. }
  29.  
  30. public String getPassword() {
  31. return password;
  32. }
  33.  
  34. public void setPassword(String password) {
  35. this.password = password;
  36. }
  37.  
  38. public String getPhone() {
  39. return phone;
  40. }
  41.  
  42. public void setPhone(String phone) {
  43. this.phone = phone;
  44. }
  45.  
  46. public String getCompany() {
  47. return company;
  48. }
  49.  
  50. public void setCompany(String company) {
  51. this.company = company;
  52. }
  53.  
  54. public String getType() {
  55. return type;
  56. }
  57.  
  58. public void setType(String type) {
  59. this.type = type;
  60. }
  61.  
  62. public String getPosition() {
  63. return position;
  64. }
  65.  
  66. public void setPosition(String position) {
  67. this.position = position;
  68. }
  69.  
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement