![JAR search and dependency download from the Maven repository](/logo.png)
org.scalatra.servlet.RichSession.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra_2.10 Show documentation
Show all versions of scalatra_2.10 Show documentation
The core Scalatra framework
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