xitrum.controller

ActionFactory

trait ActionFactory extends AnyRef

val action1 = GET("pattern") { }

val action2 = GET { }

val action3 = first.cacheActionSecond(30).GET("pattern") { }

val action4 = cacheActionSecond(30).first.GET("pattern") { }

val action5 = first.GET("pattern") { }

val action6 = cacheActionSecond(30).GET("pattern") { }

See Action, methods here relates to those there.

Self Type
Controller
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ActionFactory
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def DELETE(body: ⇒ Any): Action

  7. def DELETE(pattern: String)(body: ⇒ Any): Action

  8. def GET(body: ⇒ Any): Action

  9. def GET(pattern: String)(body: ⇒ Any): Action

  10. def OPTIONS(body: ⇒ Any): Action

  11. def OPTIONS(pattern: String)(body: ⇒ Any): Action

  12. def PATCH(body: ⇒ Any): Action

  13. def PATCH(pattern: String)(body: ⇒ Any): Action

  14. def POST(body: ⇒ Any): Action

  15. def POST(pattern: String)(body: ⇒ Any): Action

  16. def PUT(body: ⇒ Any): Action

  17. def PUT(pattern: String)(body: ⇒ Any): Action

  18. def WEBSOCKET(body: ⇒ Any): Action

  19. def WEBSOCKET(pattern: String)(body: ⇒ Any): Action

  20. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  21. def cacheActionDay(days: Int): Action

  22. def cacheActionHour(hours: Int): Action

  23. def cacheActionMinute(minutes: Int): Action

  24. def cacheActionSecond(seconds: Int): Action

  25. def cachePageDay(days: Int): Action

  26. def cachePageHour(hours: Int): Action

  27. def cachePageMinute(minutes: Int): Action

  28. def cachePageSecond(seconds: Int): Action

  29. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  31. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  32. def errorAction(body: ⇒ Unit): Action

    Creates route for 404 or 500 error handler.

  33. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. def first: Action

  35. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  36. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  37. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  38. def last: Action

  39. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  40. final def notify(): Unit

    Definition Classes
    AnyRef
  41. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  43. def toString(): String

    Definition Classes
    AnyRef → Any
  44. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  45. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  46. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped