net.liftweb

http

package http

Visibility
  1. Public
  2. All

Type Members

  1. trait AbstractScreen extends Factory

    The trait that forms the basis for LiftScreen and the Screen instances in Wizard

  2. case class AcceptedResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    202 response but without body.

  3. case class ActionMessageSet (msg: List[() ⇒ Any], req: Req) extends CometMessage with Product with Serializable

  4. case class AddAListener (who: SimpleActor[Any], shouldUpdate: PartialFunction[Any, Boolean]) extends Product with Serializable

    This is a message class for use with ListenerManager and CometListener instances.

  5. case class AjaxContext (success: Box[String], failure: Box[String], responseType: Value) extends Product with Serializable

  6. case class AnswerQuestion (what: Any, listeners: List[(ListenerId, (AnswerRender) ⇒ Unit)]) extends CometMessage with Product with Serializable

  7. case class AnswerRender (response: XmlOrJsCmd, who: LiftCometActor, when: Long, displayAll: Boolean) extends CometMessage with Product with Serializable

  8. case class AskQuestion (what: Any, who: LiftCometActor, listeners: List[(ListenerId, (AnswerRender) ⇒ Unit)]) extends CometMessage with Product with Serializable

  9. case class AtomCategoryResponse (xml: Node) extends LiftResponse with Product with Serializable

    Returning an Atom category document.

  10. case class AtomCreatedResponse (xml: Node) extends LiftResponse with Product with Serializable

    The Atom entity was successfully created and is shown to the client.

  11. case class AtomResponse (xml: Node, addlHeaders: List[(String, String)]) extends XmlNodeResponse with Product with Serializable

    Returning an Atom document.

  12. case class AtomServiceResponse (xml: Node) extends LiftResponse with Product with Serializable

    Returning an Atom Service Document.

  13. case class BadGatewayResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    502 Bad Gateway

  14. case class BadResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    400 Bad Request

  15. trait BasicResponse extends LiftResponse

    Attributes
    sealed
  16. trait BlankStatelessBehavior extends StatelessBehavior

    A "default" implementation of StatelessBehavior.

  17. case class BodyOrInputStream (is: InputStream) extends Product with Serializable

    Holds either the body or the request input stream, depending on which was requested first

  18. trait BooleanField extends FieldIdentifier

  19. class Bootable extends AnyRef

    Attributes
    abstract
  20. case class BreakOut () extends Product with Serializable

    Attributes
    final
  21. case class CSSResponse (text: String, headers: List[(String, String)], code: Int) extends LiftResponse with Product with Serializable

  22. case class CVP (guid: String, version: Long) extends CometVersionPair with Product with Serializable

  23. trait CleanRequestVarOnSessionTransition extends AnyRef

  24. trait CometActor extends LiftActor with LiftCometActor with BindHelpers

    Takes care of the plumbing for building Comet-based Web Apps

  25. class CometActorJ extends LiftActorJ with CometActor

    Subclass from this class if you're in Java-land and want a CometActor

  26. class CometActorJWithCometListener extends CometActorJ with CometListener

    Subclass from this class if you want a CometActorJ with CometListeners

  27. case class CometCreationInfo (contType: String, name: Box[String], defaultXml: NodeSeq, attributes: Map[String, String], session: LiftSession) extends Product with Serializable

    A case class that contains the information necessary to set up a CometActor

  28. trait CometListener extends CometActor

    This trait adds functionality to automatically register with a given Actor using AddAListener and RemoveAListener control messages.

  29. class CometMessage extends AnyRef

    Attributes
    sealed abstract
  30. trait CometState [DeltaType <: DeltaTrait, MyType <: CometState[DeltaType, MyType]] extends AnyRef

  31. trait CometStateWithUpdate [UpdateType, DeltaType <: DeltaTrait, MyType <: CometStateWithUpdate[UpdateType, DeltaType, MyType]] extends CometState[DeltaType, MyType]

  32. trait CometVersionPair extends AnyRef

    Holds the Comet identification information

  33. trait ContainerSerializer [T] extends AnyRef

    A trait that provides *actual* serialization of a type so that the type can be stored into a container's session and be migrated across servers

  34. class ContainerVar [T] extends AnyVar[T, ContainerVar[T]] with LazyLoggable

    A typesafe container for data with a lifetime nominally equivalent to the lifetime of HttpSession attributes.

  35. case class ContentType (theType: String, subtype: String, order: Int, q: Box[Double], extension: List[(String, String)]) extends Ordered[ContentType] with Product with Serializable

    Holds information about the content type and subtype including the q parameter and extension information.

  36. class ContinueResponseException extends LiftFlowOfControlException

    This exception is used by LiftSession.

  37. case class CreatedResponse (xml: Node, mime: String, addlHeaders: List[(String, String)]) extends XmlNodeResponse with Product with Serializable

    201 Created Response

  38. class Delta extends AnyRef

    Attributes
    abstract
  39. trait DeltaTrait extends AnyRef

  40. trait DispatchSnippet extends AnyRef

  41. case class Error (id: Box[String], msg: NodeSeq) extends CometMessage with Product with Serializable

  42. trait Factory extends SimpleInjector

    A base trait for a Factory.

  43. class FileParamHolder extends ParamHolder

    A FileParamHolder contains a file uploaded via a multipart form.

  44. case class ForbiddenResponse (message: String) extends LiftResponse with HeaderDefaults with Product with Serializable

    403 Forbidden

  45. trait FormVendor extends AnyRef

  46. class GenericValidator extends XHtmlValidator with Loggable

    Attributes
    abstract
  47. case class GoneResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    410 Resource Gone

  48. trait HeaderDefaults extends AnyRef

  49. trait HowStateful extends AnyRef

    A trait defining how stateful the session is

  50. case class Html5Properties (userAgent: Box[String]) extends HtmlProperties with Product with Serializable

    If you're going to use HTML5, then this is the set of properties to use

  51. trait HtmlProperties extends AnyRef

    This trait encapsulates the various choices related to parsing and emitting HTML/XHTML

  52. trait IdMemoizeTransform extends (NodeSeq) ⇒ NodeSeq

    A mechanism to memoize a transformation and then re-use the most recent html and ID to redraw the content or even use an Ajax call to update the content

  53. class InMemFileParamHolder extends FileParamHolder

    This FileParamHolder stores the uploaded file directly into memory.

  54. case class InMemoryResponse (data: Array[Byte], headers: List[(String, String)], cookies: List[HTTPCookie], code: Int) extends BasicResponse with Product with Serializable

    Attributes
    final
  55. trait InsecureLiftView extends AnyRef

    If a class is to be used as a lift view (rendering from code rather than a static template) and the method names are to be used as "actions", the view must be marked as "InsecureLiftView" because there exists the ability to execute arbitrary methods based on wire content

  56. trait IntField extends FieldIdentifier

  57. case class InternalServerErrorResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    500 Internal Server Error

  58. case class JavaScriptResponse (js: JsCmd, headers: List[(String, String)], cookies: List[HTTPCookie], code: Int) extends LiftResponse with Product with Serializable

    Impersonates a HTTP response having Content-Type = text/javascript

  59. class JsContext extends AjaxContext

  60. case class JsDelta (when: Long, js: JsCmd) extends Delta with Product with Serializable

  61. class JsonContext extends AjaxContext

  62. class JsonHandler extends AnyRef

    Used to handles JSON requests

  63. case class JsonResponse (json: JsExp, headers: List[(String, String)], cookies: List[HTTPCookie], code: Int) extends LiftResponse with Product with Serializable

  64. class LiftActorJWithListenerManager extends LiftActorJ with ListenerManager

    A LiftActorJ with ListenerManager.

  65. trait LiftCometActor extends TypedActor[Any, Any] with ForwardableActor[Any, Any] with Dependent

  66. class LiftFilter extends ServletFilterProvider

  67. trait LiftResponse extends AnyRef

  68. class LiftRules extends Factory with FormVendor with LazyLoggable

    LiftRules is the global object that holds all of Lift's configuration.

  69. class LiftRulesJ extends AnyRef

  70. class LiftRulesJBridge extends AnyRef

  71. trait LiftRulesMocker extends AnyRef

    Attributes
    sealed
  72. trait LiftScreen extends AbstractScreen with StatefulSnippet with ScreenWizardRendered

  73. class LiftServlet extends Loggable

  74. class LiftSession extends LiftMerge with Loggable with HowStateful

    The LiftSession class containg the session state information

  75. trait LiftView extends AnyRef

    The preferred way to do lift views.

  76. case class Listen (when: Long, uniqueId: ListenerId, action: (AnswerRender) ⇒ Unit) extends CometMessage with Product with Serializable

  77. case class ListenerId (id: Long) extends Product with Serializable

  78. trait ListenerManager extends AnyRef

    This trait manages a set of Actors in a publish/subscribe pattern.

  79. trait MVCHelper extends PartialFunction[Req, () ⇒ Box[LiftResponse]]

    Mix this trait into a class to provide support for MVC style coding.

  80. trait MemoizeTransform extends (NodeSeq) ⇒ NodeSeq

    Memoize the CSS Selector Transform and the most recent NodeSeq sent to the NodeSeq => NodeSeq so that when applyAgain() is called, the NodeSeq most recently used in apply() is used.

  81. class MessageState extends RedirectState

  82. case class MethodNotAllowedResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    405 Method Not Allowed

  83. trait MigratorySession extends HowStateful

    Sessions that include this trait will only have access to the container's state via ContainerVars.

  84. case class NoContentResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    204 response but without body.

  85. trait NodeResponse extends LiftResponse

  86. case class NodeSeqFunc (f: (NodeSeq) ⇒ NodeSeq) extends NodeSeqFuncOrSeqNodeSeqFunc with Product with Serializable

    Attributes
    final
  87. trait NodeSeqFuncOrSeqNodeSeqFunc extends (NodeSeq) ⇒ NodeSeq

    Attributes
    sealed
  88. case class NormalParamHolder (name: String, value: String) extends ParamHolder with Product with Serializable

    Attributes
    final
    Annotations
    @serializable()
  89. case class NotAcceptableResponse (msg: String) extends LiftResponse with HeaderDefaults with Product with Serializable

    406 Not Acceptable

  90. trait NotFound extends AnyRef

    Attributes
    sealed
  91. case class NotFoundAsNode (node: NodeSeq) extends NotFound with Product with Serializable

    Attributes
    final
  92. case class NotFoundAsResponse (response: LiftResponse) extends NotFound with Product with Serializable

    Attributes
    final
  93. case class NotFoundAsTemplate (path: ParsePath) extends NotFound with Product with Serializable

    Attributes
    final
  94. case class NotFoundResponse (message: String) extends LiftResponse with HeaderDefaults with Product with Serializable

    404 Not Found

  95. case class NotImplementedResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    501 Not Implemented

  96. case class Notice (id: Box[String], msg: NodeSeq) extends CometMessage with Product with Serializable

  97. case class OkResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    200 response but without body.

  98. case class OldHtmlProperties (userAgent: Box[String]) extends HtmlProperties with Product with Serializable

    This set of properties is based on Lift's current XHTML support

  99. class OnDiskFileParamHolder extends FileParamHolder

    This FileParamHolder stores the uploaded file in a temporary file on disk.

  100. case class OpenSearchResponse (xml: Node, addlHeaders: List[(String, String)]) extends XmlNodeResponse with Product with Serializable

    Returning an OpenSearch Description Document.

  101. case class OutputStreamResponse (out: (OutputStream) ⇒ Unit, size: Long, headers: List[(String, String)], cookies: List[HTTPCookie], code: Int) extends BasicResponse with Product with Serializable

    Use this response to write your data directly to the response pipe.

  102. trait Paginator [T] extends Loggable

    Base class for things that require pagination.

  103. trait PaginatorSnippet [T] extends Paginator[T]

    This is the paginator snippet.

  104. case class ParamCalcInfo (paramNames: List[String], params: Map[String, List[String]], uploadedFiles: List[FileParamHolder], body: Box[BodyOrInputStream]) extends Product with Serializable

    Attributes
    final
  105. trait ParamHolder extends AnyRef

    Attributes
    sealed
    Annotations
    @serializable()
  106. case class ParsePath (partPath: List[String], suffix: String, absolute: Boolean, endSlash: Boolean) extends Product with Serializable

    The representation of an URI path

  107. case class PartialUpdateMsg (cmd: () ⇒ JsCmd) extends CometMessage with Product with Serializable

  108. case class PerformSetupComet2 (initialReq: Box[Req]) extends CometMessage with Product with Serializable

  109. case class PermRedirectResponse (uri: String, request: Req, cookies: HTTPCookie*) extends LiftResponse with Product with Serializable

    301 Redirect.

  110. case class PlainTextResponse (text: String, headers: List[(String, String)], code: Int) extends LiftResponse with Product with Serializable

  111. case class ReRender (doAll: Boolean) extends CometMessage with Product with Serializable

  112. case class RedirectResponse (uri: String, request: Req, cookies: HTTPCookie*) extends LiftResponse with Product with Serializable

    302

  113. case class RedirectState (func: Box[() ⇒ Unit], msgs: (String, Value)*) extends Product with Serializable

  114. class RedirectWithState extends RedirectResponse

  115. case class RemoveAListener (who: SimpleActor[Any]) extends Product with Serializable

    This is a message class for use with ListenerManager and CometListener instances.

  116. trait RenderDispatch extends AnyRef

    Mix this into a StatefulSnippet if you want a defined render method.

  117. trait RenderFuncDispatch extends AnyRef

    Mix this into a StatefulSnippet if you want a defined render method.

  118. case class RenderOut (xhtml: Box[NodeSeq], fixedXhtml: Box[NodeSeq], script: Box[JsCmd], destroyScript: Box[JsCmd], ignoreHtmlOnJs: Boolean) extends Product with Serializable

    The RenderOut case class contains the rendering for the CometActor.

  119. class Req extends HasParams with UserAgentCalculator

    Contains request information

  120. class RequestMemoize [K, V] extends MemoizeVar[K, V]

    Memoize a value for the duration of the current request (and subsequent Ajax requests made as a result of viewing the page)

  121. class RequestType extends AnyRef

    Attributes
    abstract
    Annotations
    @serializable()
  122. class RequestVar [T] extends AnyVar[T, RequestVar[T]] with HasLogUnreadVal

    A typesafe container for data with a lifetime nominally equivalent to the lifetime of a page rendered by an HTTP request.

  123. trait RequestVarSnapshotGroup extends AnyRef

    Create case objects that implement this trait and use the case objects to denote specific SnapshotGroups for RequestVars

  124. case class ResetContentResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    205 response but without body.

  125. case class ResponseShortcutException (_response: () ⇒ LiftResponse, redirectTo: Box[String], doNotices: Boolean) extends LiftFlowOfControlException with Product with Serializable

    Attributes
    final
  126. case class ResponseWithReason (response: LiftResponse, reason: String) extends LiftResponse with Product with Serializable

    Wraps a LiftResponse along with a HTTP reason-phrase.

  127. case class RewriteRequest (path: ParsePath, requestType: RequestType, httpRequest: HTTPRequest) extends Product with Serializable

    This case class is used for pattern matching.

  128. case class RewriteResponse (path: ParsePath, params: Map[String, String], stopRewriting: Boolean) extends Product with Serializable

    Attributes
    final
  129. trait S extends HasParams with Loggable

    An object representing the current state of the HTTP request and response.

  130. trait SHtml extends AnyRef

    The SHtml object defines a suite of XHTML element generator methods to simplify the creation of markup, particularly with forms and AJAX.

  131. class SHtmlJ extends AnyRef

  132. class SHtmlJBridge extends AnyRef

  133. class SJ extends AnyRef

  134. class SJBridge extends AnyRef

  135. case class ScreenFieldInfo (field: FieldIdentifier, text: NodeSeq, help: Box[NodeSeq], input: Box[NodeSeq]) extends Product with Serializable

  136. trait ScreenWizardRendered extends AnyRef

  137. case class SeeOtherResponse (uri: String, request: Req, cookies: HTTPCookie*) extends LiftResponse with Product with Serializable

    303

  138. case class SeqNodeSeqFunc (f: Seq[(NodeSeq) ⇒ NodeSeq]) extends NodeSeqFuncOrSeqNodeSeqFunc with Product with Serializable

    Attributes
    final
  139. case class ServiceUnavailableResponse (retryAfter: Long) extends LiftResponse with Product with Serializable

    503 Bad Gateway

  140. case class SessionInfo (session: LiftSession, userAgent: Box[String], ipAddress: Box[String], requestCnt: Int, lastAccess: Long) extends Product with Serializable

    Information about sessions

  141. class SessionMemoize [K, V] extends MemoizeVar[K, V]

    Memoize a value for the duration of the user's session

  142. class SessionVar [T] extends AnyVar[T, SessionVar[T]] with LazyLoggable

    A typesafe container for data with a lifetime nominally equivalent to the lifetime of HttpSession attributes.

  143. case class SessionWatcherInfo (sessions: Map[String, SessionInfo]) extends Product with Serializable

  144. trait SimpleController extends AnyRef

    The base trait of Controllers that handle pre-view requests

  145. trait SimpleStateful extends StatefulSnippet with Whence with RenderFuncDispatch

    The simple composition of StatefulSnippet, Whence and RenderFuncDispatch.

  146. trait SimpleStatelessBehavior extends StatelessBehavior

    A simpler way to define behavior if the snippet is invoked.

  147. class SnapshotRequestVar [T] extends RequestVar[T]

    This subclass of RequestVars that allow the specification of a RequestVarSnapshotGroup.

  148. class SnippetExecutionException extends SnippetFailureException

    Throw this exception if there's a catostrophic failure executing a snippet

  149. class SnippetFailureException extends LiftFlowOfControlException

    An abstract exception that may be thrown during page rendering.

  150. class SnippetPFJ extends AnyRef

    Attributes
    abstract
  151. trait SortedPaginator [T, C] extends Paginator[T]

    In many situations you'll want to sort things in your paginated view.

  152. trait SortedPaginatorSnippet [T, C] extends SortedPaginator[T, C] with PaginatorSnippet[T]

    This trait adds snippet functionality for sorted paginators.

  153. class StateInStatelessException extends SnippetFailureException

  154. trait StatefulComet extends CometActor

  155. trait StatefulSnippet extends DispatchSnippet

    The same StatefulSnippet instance is used across a given page rendering.

  156. trait StatefulSortedPaginatorSnippet [T, C] extends SortedPaginatorSnippet[T, C]

    Sort your paginated views by using lifts functions mapping.

  157. trait StatelessBehavior extends AnyRef

    Mix this snippet into any snippet.

  158. case class StatelessReqTest (path: List[String], httpReq: HTTPRequest) extends Product with Serializable

    The data structure that contains information to determine if the request should be treated as a stateful or stateless request

  159. trait StatelessSession extends HowStateful

    Sessions that include this trait will not be retained past the current request and will give notifications of failure if stateful features of Lift are accessed

  160. case class StreamingResponse (data: AnyRef { def read(buf: Array[Byte]): Int }, onEnd: () ⇒ Unit, size: Long, headers: List[(String, String)], cookies: List[HTTPCookie], code: Int) extends BasicResponse with Product with Serializable

    Attributes
    final
  161. trait StringField extends FieldIdentifier with StringValidators

  162. case class TemporaryRedirectResponse (uri: String, request: Req, cookies: HTTPCookie*) extends LiftResponse with Product with Serializable

    307 Redirect.

  163. class TransientRequestMemoize [K, V] extends MemoizeVar[K, V]

    Memoize a value for the duration of the current HTTP request

  164. class TransientRequestVar [T] extends AnyVar[T, TransientRequestVar[T]] with HasLogUnreadVal

    A typesafe container for data with a lifetime strictly equal to the processing of a single HTTP request.

  165. class UnauthorizedDigestResponse extends UnauthorizedResponse

    401 Unauthorized Response.

  166. case class UnauthorizedResponse (realm: String) extends LiftResponse with Product with Serializable

    401 Unauthorized Response.

  167. case class UnknownRequest (method: String) extends RequestType with Product with Serializable

    Annotations
    @serializable()
  168. case class Unlisten (uniqueId: ListenerId) extends CometMessage with Product with Serializable

  169. case class UnsupportedMediaTypeResponse () extends LiftResponse with HeaderDefaults with Product with Serializable

    415 Resource Gone

  170. case class UpdateDefaultXml (xml: NodeSeq) extends CometMessage with Product with Serializable

    Update the comet XML on each page reload in dev mode

  171. trait UserAgentCalculator extends AnyRef

  172. class VarsJ extends AnyRef

  173. class VarsJBridge extends AnyRef

    The bridge between Scala *Vars implementations and the

  174. case class Warning (id: Box[String], msg: NodeSeq) extends CometMessage with Product with Serializable

  175. trait Whence extends AnyRef

    Mix this trait into a snippet class so that you have a convenient value to redirect back to (whence).

  176. case class XHTMLValidationError (msg: String, line: Int, col: Int) extends Product with Serializable

  177. case class XHtmlInHtml5OutProperties (userAgent: Box[String]) extends HtmlProperties with Product with Serializable

    If you're going to use HTML5 out, but want XHTML in (so you can have mixed case snippet tags and you don't get the Html5 parsers obnoxious table behavior), then this is the set of properties to use

  178. trait XHtmlValidator extends (Node) ⇒ List[XHTMLValidationError]

  179. case class XhtmlResponse (out: Node, __docType: Box[String], _headers: List[(String, String)], cookies: List[HTTPCookie], code: Int, renderInIEMode: Boolean) extends NodeResponse with Product with Serializable

  180. case class XmlMimeResponse (xml: Node, mime: String, addlHeaders: List[(String, String)]) extends XmlNodeResponse with Product with Serializable

    Allows you to create custom 200 responses for clients using different Content-Types.

  181. trait XmlNodeResponse extends LiftResponse

  182. class XmlResponse extends XmlNodeResponse

  183. trait CometListenee extends CometListener

    This is a legacy trait, left over from Lift's Scala 2.

Value Members

  1. object ActorWatcher extends Actor with Loggable

    An actor that monitors other actors that are linked with it.

  2. object AddAListener extends Serializable

  3. object AjaxContext extends Serializable

  4. object AjaxType extends Enumeration

  5. object AnyVar extends AnyRef

  6. object AppXmlResponse extends AnyRef

  7. object AskRender extends CometMessage with Product with Serializable

  8. object Bindings extends AnyRef

    A collection of types and implicit transformations used to allow composition of page elements based upon the types of rendered objects.

  9. object CSSResponse extends Serializable

  10. object ClearNotices extends CometMessage with Product with Serializable

  11. object ContainerSerializer extends AnyRef

  12. object ContentType extends Serializable

    The ContentType companion object that has helper methods for parsing Accept headers and other things that contain multiple ContentType information.

  13. object ContinueResponseException extends Serializable

  14. object CurrentCometActor extends ThreadGlobal[LiftCometActor]

  15. object DefaultNotFound extends NotFound with Product with Serializable

  16. object DefaultRoutines extends AnyRef

    Many routines in Lift can be customized in LiftRules, but have default behaviors.

  17. object DeleteRequest extends RequestType with Product with Serializable

    Annotations
    @serializable()
  18. object DoRedirectResponse extends AnyRef

  19. object DocType extends AnyRef

    Stock XHTML doctypes available to the lift programmer.

  20. object Error extends Serializable

  21. object FileParamHolder extends Serializable

  22. object ForbiddenResponse extends Serializable

  23. object GetRequest extends RequestType with Product with Serializable

    Annotations
    @serializable()
  24. object HeadRequest extends RequestType with Product with Serializable

    Annotations
    @serializable()
  25. object Html5ElemAttr extends AnyRef

  26. object JavaScriptResponse extends Serializable

  27. object JsonResponse extends Serializable

  28. object LiftRules extends LiftRulesMocker

    The Lift configuration singleton

  29. object LiftRulesJ extends

  30. object LiftRulesMocker extends AnyRef

  31. object LiftScreenRules extends Factory with FormVendor

  32. object LiftSession extends AnyRef

  33. object ListenerManager extends AnyRef

  34. object MessageState extends Serializable

  35. object NodeSeqFuncOrSeqNodeSeqFunc extends AnyRef

  36. object NotAcceptableResponse extends Serializable

  37. object NotFoundResponse extends Serializable

  38. object Notice extends Serializable

  39. object NoticeType extends AnyRef

    Defines the notices types

  40. object OnDiskFileParamHolder extends AnyRef

  41. object OutputStreamResponse extends Serializable

  42. object PageName extends RequestVar[String]

  43. object PlainTextResponse extends Serializable

  44. object PostRequest extends RequestType with Product with Serializable

    Annotations
    @serializable()
  45. object PutRequest extends RequestType with Product with Serializable

    Annotations
    @serializable()
  46. object Qop extends Enumeration

  47. object RedirectResponse extends Serializable

    Companion object to RedirectResponse

  48. object RedirectState extends Serializable

  49. object RedirectWithState extends Serializable

  50. object RelinkToActorWatcher extends Product with Serializable

    This is used as an indicator message for linked actors.

  51. object Req extends AnyRef

    Helper object for constructing Req instances

  52. object RequestType extends Serializable

  53. object RequestVar extends AnyRef

    The companion object to RequestVars

  54. object ResourceServer extends AnyRef

  55. object ResponseShortcutException extends Serializable

  56. object RewriteResponse extends Serializable

    Maintains the context of resolving the URL when cookies are disabled from container.

  57. object S extends S

    An object representing the current state of the HTTP request and response.

  58. object SHtml extends SHtml

    The SHtml object defines a suite of XHTML element generator methods to simplify the creation of markup, particularly with forms and AJAX.

  59. object SHtmlJ extends

  60. object SJ extends

  61. object SeeOtherResponse extends Serializable

    Companion object to RedirectResponse

  62. object SessionMaster extends LiftActor with Loggable

    Manages LiftSessions because the servlet container is less than optimal at timing sessions out.

  63. object ShutDown extends Product with Serializable

    The response from a page saying that it's been rendered

  64. object ShutdownIfPastLifespan extends CometMessage with Product with Serializable

  65. object SnippetPFJ extends

  66. object StrictXHTML1_0Validator extends GenericValidator

  67. object Templates extends AnyRef

    Contains functions for obtaining templates

  68. object TransitionalXHTML1_0Validator extends GenericValidator

  69. object URLRewriter extends AnyRef

  70. object UnauthorizedDigestResponse extends Serializable

    Companion object with builder

  71. object UserAgentCalculator extends Factory

  72. object VarsJ extends

  73. object Warning extends Serializable

  74. object WiringUI extends AnyRef

    Surface a user interface on top of Wiring

  75. object XmlResponse extends AnyRef

  76. package auth

  77. package jquery

  78. package js

  79. package provider

  80. package rest

  81. package testing

Deprecated Value Members

  1. object ResponseInfo extends AnyRef

    Avoid using this in favor of LiftRules.

  2. lazy val TemplateFinder : net.liftweb.http.Templates.type

    Definition Classes
    package
    Annotations
    @deprecated
    Deprecated

    Use Templates