Packages

t

net.liftweb.http.provider

HTTPContext

trait HTTPContext extends AnyRef

Represents the service context information. Similar with servlet context.

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

Abstract Value Members

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

    returns

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

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

    returns

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

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

    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.

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

    returns

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

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

    returns

    the mime type mapped to resource determined by this path.

  6. abstract 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.

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

  8. abstract 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

  9. abstract 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

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

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped