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) 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. case class BodyOrInputStream (is: InputStream) extends Product with Serializable

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

  17. trait BooleanField extends FieldIdentifier

  18. class Bootable extends AnyRef

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

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

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

  22. trait CleanRequestVarOnSessionTransition extends AnyRef

  23. trait CometActor extends LiftActor with LiftCometActor with BindHelpers

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

  24. class CometActorJ extends LiftActorJ with CometActor

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

  25. class CometActorJWithCometListener extends CometActorJ with CometListener

    Subclass from this class if you want a CometActorJ with CometListeners

  26. 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

  27. trait CometListener extends CometActor

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

  28. class CometMessage extends AnyRef

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

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

  31. trait CometVersionPair extends AnyRef

    Holds the Comet identification information

  32. 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

  33. 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.

  34. 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.

  35. class ContinueResponseException extends LiftFlowOfControlException

    This exception is used by LiftSession.

  36. case class CreatedResponse (xml: Node, mime: String) extends XmlNodeResponse with Product with Serializable

    201 Created Response

  37. class Delta extends AnyRef

    Attributes
    abstract
  38. trait DeltaTrait extends AnyRef

  39. trait DispatchSnippet extends AnyRef

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

  41. trait Factory extends SimpleInjector

    A base trait for a Factory.

  42. class FileParamHolder extends ParamHolder

    A FileParamHolder contains a file uploaded via a multipart form.

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

    403 Forbidden

  44. trait FormVendor extends AnyRef

  45. class GenericValidator extends XHtmlValidator with Loggable

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

    410 Resource Gone

  47. trait HeaderDefaults extends AnyRef

  48. trait HowStateful extends AnyRef

    A trait defining how stateful the session is

  49. 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

  50. trait HtmlProperties extends AnyRef

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

  51. 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

  52. class InMemFileParamHolder extends FileParamHolder

    This FileParamHolder stores the uploaded file directly into memory.

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

    Attributes
    final
  54. 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

  55. trait IntField extends FieldIdentifier

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

    500 Internal Server Error

  57. 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

  58. class JsContext extends AjaxContext

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

  60. class JsonContext extends AjaxContext

  61. class JsonHandler extends AnyRef

    Used to handles JSON requests

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

  63. class LiftActorJWithListenerManager extends LiftActorJ with ListenerManager

    A LiftActorJ with ListenerManager.

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

  65. class LiftFilter extends ServletFilterProvider

  66. trait LiftResponse extends AnyRef

  67. class LiftRules extends Factory with FormVendor with LazyLoggable

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

  68. class LiftRulesJ extends AnyRef

  69. class LiftRulesJBridge extends AnyRef

  70. trait LiftRulesMocker extends AnyRef

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

  72. class LiftServlet extends Loggable

  73. class LiftSession extends LiftMerge with Loggable with HowStateful

    The LiftSession class containg the session state information

  74. trait LiftView extends AnyRef

    The preferred way to do lift views.

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

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

  77. trait ListenerManager extends AnyRef

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

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

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

  79. 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.

  80. class MessageState extends RedirectState

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

    405 Method Not Allowed

  82. trait MigratorySession extends HowStateful

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

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

    204 response but without body.

  84. trait NodeResponse extends LiftResponse

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

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

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

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

    406 Not Acceptable

  89. trait NotFound extends AnyRef

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

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

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

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

    404 Not Found

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

    501 Not Implemented

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

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

    200 response but without body.

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

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

  98. class OnDiskFileParamHolder extends FileParamHolder

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

  99. case class OpenSearchResponse (xml: Node) extends XmlNodeResponse with Product with Serializable

    Returning an OpenSearch Description Document.

  100. 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.

  101. trait Paginator [T] extends Loggable

    Base class for things that require pagination.

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

    This is the paginator snippet.

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

    Attributes
    final
  104. trait ParamHolder extends AnyRef

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

    The representation of an URI path

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

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

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

    301 Redirect.

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

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

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

    302

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

  113. class RedirectWithState extends RedirectResponse

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

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

  115. trait RenderDispatch extends AnyRef

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

  116. trait RenderFuncDispatch extends AnyRef

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

  117. 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.

  118. class Req extends HasParams with UserAgentCalculator

    Contains request information

  119. 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)

  120. class RequestType extends AnyRef

    Attributes
    abstract
    Annotations
    @serializable()
  121. 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.

  122. trait RequestVarSnapshotGroup extends AnyRef

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

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

    205 response but without body.

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

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

    Wraps a LiftResponse along with a HTTP reason-phrase.

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

    This case class is used for pattern matching.

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

    Attributes
    final
  128. trait S extends HasParams with Loggable

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

  129. 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.

  130. class SHtmlJ extends AnyRef

  131. class SHtmlJBridge extends AnyRef

  132. class SJ extends AnyRef

  133. class SJBridge extends AnyRef

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

  135. trait ScreenWizardRendered extends AnyRef

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

    303

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

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

    503 Bad Gateway

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

    Information about sessions

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

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

  141. 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.

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

  143. trait SimpleController extends AnyRef

    The base trait of Controllers that handle pre-view requests

  144. trait SimpleStateful extends StatefulSnippet with Whence with RenderFuncDispatch

    The simple composition of StatefulSnippet, Whence and RenderFuncDispatch.

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

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

  146. class SnippetExecutionException extends SnippetFailureException

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

  147. class SnippetFailureException extends LiftFlowOfControlException

    An abstract exception that may be thrown during page rendering.

  148. class SnippetPFJ extends AnyRef

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

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

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

    This trait adds snippet functionality for sorted paginators.

  151. class StateInStatelessException extends SnippetFailureException

  152. trait StatefulComet extends CometActor

  153. trait StatefulSnippet extends DispatchSnippet

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

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

    Sort your paginated views by using lifts functions mapping.

  155. 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

  156. 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
  157. trait StringField extends FieldIdentifier with StringValidators

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

    307 Redirect.

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

    Memoize a value for the duration of the current HTTP request

  160. 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.

  161. class UnauthorizedDigestResponse extends UnauthorizedResponse

    401 Unauthorized Response.

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

    401 Unauthorized Response.

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

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

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

    415 Resource Gone

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

    Update the comet XML on each page reload in dev mode

  167. trait UserAgentCalculator extends AnyRef

  168. class VarsJ extends AnyRef

  169. class VarsJBridge extends AnyRef

    The bridge between Scala *Vars implementations and the

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

  171. trait Whence extends AnyRef

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

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

  173. 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

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

  175. 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

  176. case class XmlMimeResponse (xml: Node, mime: String) extends XmlNodeResponse with Product with Serializable

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

  177. trait XmlNodeResponse extends LiftResponse

  178. class XmlResponse extends XmlNodeResponse

  179. 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

  82. object ResponseInfo extends AnyRef

    Avoid using this in favor of LiftRules.

  83. lazy val TemplateFinder : Templates

    Definition Classes
    package
    Annotations
    @deprecated
    Deprecated

    Use Templates