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

skinny.micro.data.package.scala Maven / Gradle / Ivy

The newest version!
package skinny.micro

package object data {

  /**
   * Structural type for the various Servlet API objects that have attributes.
   * These include ServletContext, HttpSession, and ServletRequest.
   */
  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 - 2024 Weber Informatics LLC | Privacy Policy