org.scalatra.commands

ParamsOnlyCommandSupport

trait ParamsOnlyCommandSupport extends CommandSupport

Self Type
ParamsOnlyCommandSupport with ScalatraBase
Linear Supertypes
CommandSupport, CommandExecutors, ParamsValueReaderProperties, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ParamsOnlyCommandSupport
  2. CommandSupport
  3. CommandExecutors
  4. ParamsValueReaderProperties
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type CommandType = ParamsOnlyCommand

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. implicit def asyncExecutor[T <: Command, S](handler: (T) ⇒ Future[ModelValidation[S]])(implicit executionContext: ExecutionContext): CommandExecutor[T, Future[ModelValidation[S]]]

    Definition Classes
    CommandExecutors
  6. implicit def asyncModelExecutor[T <: Command, S](handler: (S) ⇒ Future[ModelValidation[S]])(implicit executionContext: ExecutionContext, vw: (T) ⇒ S): CommandExecutor[T, Future[ModelValidation[S]]]

    Definition Classes
    CommandExecutors
  7. def bindCommand[T <: (ParamsOnlyCommandSupport.this)#CommandType](newCommand: T)(implicit request: HttpServletRequest, mf: Manifest[T]): T

    Attributes
    protected
    Definition Classes
    CommandSupport
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def command[T <: (ParamsOnlyCommandSupport.this)#CommandType](implicit request: HttpServletRequest, mf: Manifest[T]): T

    Create and bind a org.scalatra.commands.Command of the given type with the current Scalatra params.

    Create and bind a org.scalatra.commands.Command of the given type with the current Scalatra params.

    For every command type, creation and binding is performed only once and then stored into a request attribute.

    Definition Classes
    CommandSupport
  10. def commandOption[T <: (ParamsOnlyCommandSupport.this)#CommandType](implicit request: HttpServletRequest, mf: Manifest[T]): Option[T]

    Definition Classes
    CommandSupport
  11. def commandOrElse[T <: (ParamsOnlyCommandSupport.this)#CommandType](factory: ⇒ T)(implicit request: HttpServletRequest, mf: Manifest[T]): T

    Create and bind a org.scalatra.commands.Command of the given type with the current Scalatra params.

    Create and bind a org.scalatra.commands.Command of the given type with the current Scalatra params.

    For every command type, creation and binding is performed only once and then stored into a request attribute.

    Definition Classes
    CommandSupport
  12. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  17. def ifValid[T <: (ParamsOnlyCommandSupport.this)#CommandType](implicit mf: Manifest[T]): RouteMatcher

    Create a org.scalatra.RouteMatcher that evaluates true only if a command is valid.

    Create a org.scalatra.RouteMatcher that evaluates true only if a command is valid.

    Definition Classes
    CommandSupport
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. implicit def multiMapHeadViewMapValueReader[T <: MultiMapHeadView[String, String]](d: T): ValueReader[T, String]

    Definition Classes
    ParamsValueReaderProperties
  20. implicit def multiParamsValueReader(d: MultiParams): ValueReader[MultiParams, Seq[String]]

    Definition Classes
    ParamsValueReaderProperties
  21. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  24. def registerCommand[T <: Command](cmd: ⇒ T)(implicit mf: Manifest[T]): Unit

    Definition Classes
    CommandSupport
  25. implicit def stringMapValueReader(d: Map[String, String]): ValueReader[Map[String, String], String]

    Definition Classes
    ParamsValueReaderProperties
  26. implicit def syncExecutor[T <: Command, S](handler: (T) ⇒ ModelValidation[S]): CommandExecutor[T, ModelValidation[S]]

    Definition Classes
    CommandExecutors
  27. implicit def syncModelExecutor[T <: Command, S](handler: (S) ⇒ ModelValidation[S])(implicit arg0: (T) ⇒ S): CommandExecutor[T, ModelValidation[S]]

    Definition Classes
    CommandExecutors
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CommandSupport

Inherited from CommandExecutors

Inherited from ParamsValueReaderProperties

Inherited from AnyRef

Inherited from Any

Ungrouped