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

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

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