All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalatra.servlet.RichSession.scala Maven / Gradle / Ivy

The newest version!
package org.scalatra
package servlet

import javax.servlet.http.HttpSession

/**
 * Extension methods to the standard HttpSession.
 */
case class RichSession(session: HttpSession) extends AttributesMap {

  def id: String = session.getId

  protected def attributes: HttpSession = session

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy