Packages

  • package root
    Definition Classes
    root
  • package net
    Definition Classes
    root
  • package liftweb
    Definition Classes
    net
  • package http
    Definition Classes
    liftweb
  • trait Factory extends SimpleInjector

    A base trait for a Factory.

    A base trait for a Factory. A Factory is both an Injector and a collection of FactorMaker instances. The FactoryMaker instances auto-register with the Injector. This provides both concrete Maker/Vender functionality as well as Injector functionality.

    Definition Classes
    http
  • FactoryMaker
  • Inject
c

net.liftweb.http.Factory

FactoryMaker

abstract class FactoryMaker[T] extends StackableMaker[T] with Vendor[T]

Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

Linear Supertypes
Vendor[T], () => T, StackableMaker[T], Maker[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FactoryMaker
  2. Vendor
  3. Function0
  4. StackableMaker
  5. Maker
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FactoryMaker(_default: Vendor[T])(implicit man: Manifest[T])

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. def apply(): T
    Definition Classes
    Vendor → Function0
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def doWith[F](addl: PValueHolder[Maker[T]])(f: => F): F
    Definition Classes
    StackableMaker
  8. def doWith[F](vFunc: () => T)(f: => F): F
    Definition Classes
    StackableMaker
  9. def doWith[F](value: T)(f: => F): F
    Definition Classes
    StackableMaker
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def find(in: List[PValueHolder[Maker[T]]]): Box[T]
    Attributes
    protected
    Definition Classes
    StackableMaker
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. implicit def make: Box[T]

    Make a Box of the instance.

    Make a Box of the instance.

    Definition Classes
    FactoryMaker → StackableMaker → Maker
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def theDefault: PSettableValueHolder[Vendor[T]]

    An alias for the default object so that it can be accessed from Java

  23. def toString(): String
    Definition Classes
    Function0 → AnyRef → Any
  24. implicit def vend: T

    Vend an instance

    Vend an instance

    Definition Classes
    FactoryMaker → Vendor
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. object default extends PSettableValueHolder[Vendor[T]]

    The default function for vending an instance

  29. object request extends RequestVar[Maker[T]]

    The request specific Maker for creating an instance

  30. object session extends SessionVar[Maker[T]]

    The session-specific Maker for creating an instance

Inherited from Vendor[T]

Inherited from () => T

Inherited from StackableMaker[T]

Inherited from Maker[T]

Inherited from AnyRef

Inherited from Any

Ungrouped