org.scalatra.servlet.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra_2.8.1 Show documentation
Show all versions of scalatra_2.8.1 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra
package object servlet {
/**
* Structural type for the various Servlet API objects that have attributes.
* These include ServletContext, HttpSession, and ServletRequest.
*/
private[scalatra] type Attributes = {
def getAttribute(name: String): AnyRef
def getAttributeNames(): java.util.Enumeration[String]
def setAttribute(name: String, value: AnyRef): Unit
def removeAttribute(name: String): Unit
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy