1 18 package org.apache.activemq.security; 19 20 21 28 public class AuthenticationUser { 29 30 String username; 31 String password; 32 String groups; 33 34 35 36 public AuthenticationUser(String username, String password, String groups) { 37 this.username = username; 38 this.password = password; 39 this.groups = groups; 40 } 41 42 43 public String getGroups() { 44 return groups; 45 } 46 public void setGroups(String groups) { 47 this.groups = groups; 48 } 49 public String getPassword() { 50 return password; 51 } 52 public void setPassword(String password) { 53 this.password = password; 54 } 55 public String getUsername() { 56 return username; 57 } 58 public void setUsername(String username) { 59 this.username = username; 60 } 61 62 63 64 } 65 | Popular Tags |