Guest User

Untitled

a guest
Mar 15th, 2017
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. package Projekt;
  2.  
  3. import java.io.Serializable;
  4. import java.util.List;
  5.  
  6. public class UserManegementBean implements Serializable {
  7.  
  8. private String userName;
  9. private String password;
  10. private String group;
  11. private String role;
  12. private List<String> userList;
  13.  
  14. public UserManegementBean(){
  15.  
  16. }
  17.  
  18. public UserManegementBean(String userName, String password, String group, String role, List<String> userList){
  19. this.userName = userName;
  20. this.password = password;
  21. this.group = group;
  22. this.role = role;
  23. this.userList = userList;
  24. }
  25.  
  26. public void setUserName(String userName){
  27. this.userName = userName;
  28. }
  29.  
  30. public void setPassword(String password){
  31. this.password = password;
  32. }
  33.  
  34. public void setGroup(String group){
  35. this.group = group;
  36. }
  37.  
  38. public void setRole(String role){
  39. this.role = role;
  40. }
  41.  
  42. public void setUserList(List<String> userList){
  43. this.userList = userList;
  44. }
  45.  
  46. public String getUserName(){
  47. return userName;
  48. }
  49.  
  50. public String getPassword(){
  51. return password;
  52. }
  53.  
  54. public String getGroup(){
  55. return group;
  56. }
  57.  
  58. public String getRole(){
  59. return role;
  60. }
  61.  
  62. public List<String> getUserList(){
  63. return userList;
  64. }
  65. }
Add Comment
Please, Sign In to add comment