object Action extends Serializable
- Source
- AppMetadata.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Action
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class Block(action: Action) extends Op with Product with Serializable
- sealed trait CastableOp extends Op
- case class Conf(param: String, paramType: ConfType = null) extends Op with Product with Serializable
- sealed trait ConfType extends AnyRef
- case class Cookie(name: String) extends Op with Product with Serializable
- case class Db(action: Action, doRollback: Boolean, dbs: List[DbAccessKey]) extends Op with Product with Serializable
-
case class
Else(action: Action) extends Op with Product with Serializable
This operation exists only in parsing stage for if operation
- case class Email(emailTresql: Tresql, subject: Op, body: Op, attachmentsOp: List[Op] = Nil, isBatch: Boolean = false) extends Op with Product with Serializable
-
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.
- case class File(idShaTresql: Tresql, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
- case class Foreach(initOp: Op, action: Action) extends Op with Product with Serializable
- 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
- case class HttpHeader(name: String) extends Op with Product with Serializable
- case class If(cond: Op, action: Action, elseAct: Action = null) extends Op with Product with Serializable
- case class Invocation(className: String, function: String, arg: Op = null, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
-
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).
- case class JsonCodec(encode: Boolean, op: Op) extends Op with Product with Serializable
- sealed trait Op extends AnyRef
- case class OpResultType(viewName: String = null, isCollection: Boolean = false) extends Product with Serializable
- type OpTraverser[T] = (T) ⇒ PartialFunction[Op, T]
- case class RedirectToKey(name: String) extends Op with Product with Serializable
- case class RemoveVar(name: Option[String]) extends Step with Product with Serializable
- case class Resource(nameTresql: Tresql, contentTypeTresql: Tresql = null) extends Op with Product with Serializable
- case class Return(name: Option[String], varTrans: List[VariableTransform], value: Op) extends Step with Product with Serializable
- case class SetEnv(name: Option[String], varTrans: List[VariableTransform], value: Op) extends Step with Product with Serializable
- case class Status(code: Int, bodyTresql: String = null) extends Op with Product with Serializable
- sealed trait Step extends AnyRef
- type StepTraverser[T] = (T) ⇒ PartialFunction[Step, T]
- case class Template(templateTresql: Tresql, dataOp: Op = null, filenameTresql: Tresql = null) extends Op with Product with Serializable
- case class ToFile(contentOp: Op, nameTresql: Tresql = null, contentTypeTresql: Tresql = null) extends Op with Product with Serializable
- case class Tresql(tresql: String, dbs: List[String] = Nil, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
- case class Unique(innerOp: Op, opt: Boolean, conformTo: Option[OpResultType] = None) extends CastableOp with Product with Serializable
- case class Validations(name: Option[String], validations: Seq[String], db: Option[DbAccessKey]) extends Step with Product with Serializable
- case class VariableTransform(from: String, to: Option[String] = None) extends Product with Serializable
- case class VariableTransforms(transforms: List[VariableTransform]) extends Op with Product with Serializable
- case class ViewCall(method: String, view: String, data: Op = null) extends Op with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val Count: String
- val Create: String
- val DbUseKey: String
- val Delete: String
- val Get: String
- val Insert: String
- val LimitKey: String
- val List: String
- val OffsetKey: String
- val OrderKey: String
- val Save: String
- val TransactionKey: String
- val Update: String
- val Upsert: String
- val ValidationsKey: String
- def apply(): Set[String]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def opTraverser[T](opTrav: ⇒ OpTraverser[T], stepTrav: ⇒ StepTraverser[T])(extractor: OpTraverser[T]): OpTraverser[T]
- def stepTraverser[T](opTrav: ⇒ OpTraverser[T])(extractor: StepTraverser[T]): StepTraverser[T]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def traverseAction[T](action: Action)(stepTraverser: StepTraverser[T]): (T) ⇒ T
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object BooleanConf extends ConfType with Product with Serializable
- object Commit extends Op with Product with Serializable
- object ConfTypes
- object ExtractHttpEntity extends Op with Product with Serializable
-
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.
- object NumberConf extends ConfType with Product with Serializable
- object StringConf extends ConfType with Product with Serializable
- object This extends Op with Product with Serializable
- object TresqlExtraction