Guest User

Untitled

a guest
Apr 26th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class User {
  2. public static final String USER_SESSION_KEY;
  3. public static User getUser(HttpServletRequest _request) {
  4. HttpSession session = _request.getSession();
  5. User returned = (User) session.getAttribute(USER_SESSION_KEY);
  6. return returned;
  7. }
  8. }
Add Comment
Please, Sign In to add comment