Packages

c

play.api.http

ActionCompositionConfiguration

case class ActionCompositionConfiguration(controllerAnnotationsFirst: Boolean = false, executeActionCreatorActionFirst: Boolean = false, includeWebSocketActions: Boolean = false) extends Product with Serializable

Configuration for action composition.

controllerAnnotationsFirst

If annotations put on controllers should be executed before the ones put on actions.

executeActionCreatorActionFirst

If the action returned by the action creator should be executed before the action composition ones.

includeWebSocketActions

If WebSocket actions should be included in action composition.

Source
HttpConfiguration.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActionCompositionConfiguration
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ActionCompositionConfiguration(controllerAnnotationsFirst: Boolean = false, executeActionCreatorActionFirst: Boolean = false, includeWebSocketActions: Boolean = false)

    controllerAnnotationsFirst

    If annotations put on controllers should be executed before the ones put on actions.

    executeActionCreatorActionFirst

    If the action returned by the action creator should be executed before the action composition ones.

    includeWebSocketActions

    If WebSocket actions should be included in action composition.

Value Members

  1. val controllerAnnotationsFirst: Boolean
  2. val executeActionCreatorActionFirst: Boolean
  3. val includeWebSocketActions: Boolean
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product