I know that while user logs in we can find the user name by
FacesContext context = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) context.getExternalContext().getRequest();
request.login(username, password);
Principal principal = request.getUserPrincipal();
principal.getName();
but how do i get the user Group (without doing any db query).
I tried the below but it doesn't work, it always returns false for all group.
context.getExternalContext().isUserInRole("USER")
request.isUserInRole("USER")