net.liftweb.http.provider

HTTPContext

trait HTTPContext extends AnyRef

Represents the service context information. Similar with servlet context.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. HTTPContext
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def attribute (name: String): Box[Any]

    name
    returns

    - the value of the context attribute identified by then provided name. Returns Empty if this parameter does not exist.

    Attributes
    abstract
  2. def attributes : List[(String, Any)]

    returns

    - a List of Tuple2 consisting of name and value pair of the attributes

    Attributes
    abstract
  3. def initParam (name: String): Box[String]

    name
    returns

    - the value of the init parameter identified by then provided name. Note that this is not typesfe and you need to explicitely do the casting when reading this attribute. Returns Empty if this parameter does not exist.

    Attributes
    abstract
  4. def initParams : List[(String, String)]

    returns

    - a List of Tuple2 consisting of name and value pair of the init parameters

    Attributes
    abstract
  5. def mimeType (path: String): Box[String]

    path
    returns

    - the mime type mapped to resource determined by this path.

    Attributes
    abstract
  6. def path : String

    returns

    - the context path. It always comes first in a request URI. It is the URI part that represent to context of the request.

    Attributes
    abstract
  7. def removeAttribute (name: String): Unit

    Attributes
    abstract
  8. def resource (path: String): URL

    Returns the URL representation of a resource that is mapped by a fully qualified path.

    Returns the URL representation of a resource that is mapped by a fully qualified path. The path is considered relative to the root path and it always starts with '/'.

    path

    - the resource path

    returns

    - the URL object of the path

    Attributes
    abstract
  9. def resourceAsStream (path: String): InputStream

    Same as resource but returns an InputStream to read the resource.

    Same as resource but returns an InputStream to read the resource.

    path

    - the resource path

    returns

    InputStream

    Attributes
    abstract
  10. def setAttribute (name: String, value: Any): Unit

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  12. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  13. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  14. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  15. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  16. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  17. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  18. def toString (): String

    Definition Classes
    AnyRef → Any
  19. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any