object Action extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Action
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Block(action: Action) extends Op with Product with Serializable
  2. sealed trait CastableOp extends Op
  3. case class Conf(param: String, paramType: ConfType = null) extends Op with Product with Serializable
  4. sealed trait ConfType extends AnyRef
  5. case class Cookie(name: String) extends Op with Product with Serializable
  6. case class Db(action: Action, doRollback: Boolean, dbs: List[DbAccessKey]) extends Op with Product with Serializable
  7. case class Else(action: Action) extends Op with Product with Serializable

    This operation exists only in parsing stage for if operation

  8. case class Email(emailTresql: Tresql, subject: Op, body: Op, attachmentsOp: List[Op] = Nil, isBatch: Boolean = false) extends Op with Product with Serializable
  9. case class Evaluation(name: Option[String], varTrans: List[VariableTransform], op: Op, keepResult: Boolean = false) extends Step with Product with Serializable

    name

    - optional variable name i.e. variable = ...

    varTrans

    - variable transformation for operation

    op

    - step operation

    keepResult

    - if false and name is specified converts QuereaseResult returned by op to some value usable in tresql as bind variable, if true assigns to op result to variable.

  10. case class File(idShaTresql: Tresql, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
  11. case class Foreach(initOp: Op, action: Action) extends Op with Product with Serializable
  12. case class Http(method: String, uriTresql: TrUri, headerTresql: Tresql = null, body: Op = null, conformTo: Option[OpResultType] = None, httpClientName: String = null) extends CastableOp with Product with Serializable
  13. case class HttpHeader(name: String) extends Op with Product with Serializable
  14. case class If(cond: Op, action: Action, elseAct: Action = null) extends Op with Product with Serializable
  15. case class Invocation(className: String, function: String, arg: Op = null, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
  16. case class Job(nameTresql: String, isDynamic: Boolean) extends Op with Product with Serializable

    if isDynamic is false, nameTresql parameter is expected to be indentifier or string constant (not to be evaluated as tresql to get job name).

  17. case class JsonCodec(encode: Boolean, op: Op) extends Op with Product with Serializable
  18. sealed trait Op extends AnyRef
  19. case class OpResultType(viewName: String = null, isCollection: Boolean = false) extends Product with Serializable
  20. type OpTraverser[T] = (T) ⇒ PartialFunction[Op, T]
  21. case class RedirectToKey(name: String) extends Op with Product with Serializable
  22. case class RemoveVar(name: Option[String]) extends Step with Product with Serializable
  23. case class Resource(nameTresql: Tresql, contentTypeTresql: Tresql = null) extends Op with Product with Serializable
  24. case class Return(name: Option[String], varTrans: List[VariableTransform], value: Op) extends Step with Product with Serializable
  25. case class SetEnv(name: Option[String], varTrans: List[VariableTransform], value: Op) extends Step with Product with Serializable
  26. case class Status(code: Int, bodyTresql: String = null) extends Op with Product with Serializable
  27. sealed trait Step extends AnyRef
  28. type StepTraverser[T] = (T) ⇒ PartialFunction[Step, T]
  29. case class Template(templateTresql: Tresql, dataOp: Op = null, filenameTresql: Tresql = null) extends Op with Product with Serializable
  30. case class ToFile(contentOp: Op, nameTresql: Tresql = null, contentTypeTresql: Tresql = null) extends Op with Product with Serializable
  31. case class Tresql(tresql: String, dbs: List[String] = Nil, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
  32. case class Unique(innerOp: Op, opt: Boolean, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
  33. case class Validations(name: Option[String], validations: Seq[String], db: Option[DbAccessKey]) extends Step with Product with Serializable
  34. case class VariableTransform(from: String, to: Option[String] = None) extends Product with Serializable
  35. case class VariableTransforms(transforms: List[VariableTransform]) extends Op with Product with Serializable
  36. case class ViewCall(method: String, view: String, data: Op = null) extends Op with Product with Serializable

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. val Count: String
  5. val Create: String
  6. val DbUseKey: String
  7. val Delete: String
  8. val Get: String
  9. val Insert: String
  10. val LimitKey: String
  11. val List: String
  12. val OffsetKey: String
  13. val OrderKey: String
  14. val Save: String
  15. val TransactionKey: String
  16. val Update: String
  17. val Upsert: String
  18. val ValidationsKey: String
  19. def apply(): Set[String]
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def opTraverser[T](opTrav: ⇒ OpTraverser[T], stepTrav: ⇒ StepTraverser[T])(extractor: OpTraverser[T]): OpTraverser[T]
  31. def stepTraverser[T](opTrav: ⇒ OpTraverser[T])(extractor: StepTraverser[T]): StepTraverser[T]
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. def traverseAction[T](action: Action)(stepTraverser: StepTraverser[T]): (T) ⇒ T
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. object BooleanConf extends ConfType with Product with Serializable
  39. object Commit extends Op with Product with Serializable
  40. object ConfTypes
  41. object ExtractHttpEntity extends Op with Product with Serializable
  42. object ExtractParts extends Op with Product with Serializable

    This op can be used if view property 'decode request' is false, for multipart request it extracts parts, for simple request creates one part with body as a Source.

  43. object NumberConf extends ConfType with Product with Serializable
  44. object StringConf extends ConfType with Product with Serializable
  45. object This extends Op with Product with Serializable
  46. object TresqlExtraction

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped