The HttpSession class
A particular session is represented by an object from the HttpSession class.
A session is defined as an association, lasting for some period, between a particular browser and a particular group of servlets on a server.
The current session is obtained by applying the method getSession() to the HttpRequest.
If no session object currently exists for this browser/servlet association, one will be created on the first call to getSession().