
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-jakarta_3 Show documentation
Show all versions of scalatra-jakarta_3 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra
package servlet
import org.scalatra.ServletCompat.http.HttpSession
/**
* Extension methods to the standard HttpSession.
*/
case class RichSession(session: HttpSession) extends AttributesMap {
def id: String = session.getId
protected[this] type A = HttpSession
protected[this] override def attributes = session
protected[this] override def attributesTypeClass: Attributes[A] = Attributes[A]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy