Packages

case class Validating(f: Boolean, errors: Option[Errors]) extends Action with Product with Serializable

Indicate whether we are validating, performed asynchronously. This action does not perform validation itself, it just provides the status or the result of validation if f = false.

f

validating status "is or is not validating"

errors

validation errors from the validation ffort, if any

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Validating
  2. Serializable
  3. Product
  4. Equals
  5. Action
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Validating(f: Boolean, errors: Option[Errors])

    f

    validating status "is or is not validating"

    errors

    validation errors from the validation ffort, if any

Value Members

  1. val errors: Option[Errors]
  2. val f: Boolean
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product