package provider
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- trait HTTPContext extends AnyRef
Represents the service context information.
Represents the service context information. Similar with servlet context.
- case class HTTPCookie(name: String, value: Box[String], domain: Box[String], path: Box[String], maxAge: Box[Int], version: Box[Int], secure_?: Box[Boolean], httpOnly: Box[Boolean] = Empty) extends Cloneable with Product with Serializable
Repersents an immutable representation of an HTTP Cookie
- case class HTTPParam(name: String, values: List[String]) extends Product with Serializable
Represents a HTTP query parameter or a HTTP header parameter
- trait HTTPProvider extends AnyRef
Implement this trait in order to integrate Lift with other underlaying web containers.
Implement this trait in order to integrate Lift with other underlaying web containers. Not necessarily JEE containers.
- trait HTTPRequest extends AnyRef
The representation of a HTTP request state
- trait HTTPResponse extends AnyRef
Represents the HTTP response that will be send to the client
- trait HTTPSession extends AnyRef
The representation of a HTTP session
Value Members
- object HTTPCookie extends Serializable
Companion module for creating HTTPCookie objects
- object HTTPParam extends Serializable
Companion module for creating new HTTPParam objects
- object RetryState extends Enumeration