CamundaVariable

orchescala.domain.CamundaVariable
See theCamundaVariable companion trait

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

case class CBoolean(value: Boolean, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CDouble(value: Double, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CFile(value: String, valueInfo: CFileValueInfo, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CFileValueInfo(filename: String, mimetype: Option[String])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CInteger(value: Int, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CJson(value: String, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class CLong(value: Long, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case object CNull extends CamundaVariable

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
CNull.type
case class CString(value: String, `type`: String) extends CamundaVariable

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Types

type JsonToCamundaValue = CamundaVariable | Map[String, CamundaVariable] | Seq[Any]

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def decodeValue(valueType: String, anyValue: ACursor, valueInfo: ACursor): Either[DecodingFailure, CamundaVariable]
def jsonObjectToProcessVariables(obj: JsonObject): Map[String, CamundaVariable]
def objectToCamunda[T <: Product : Encoder](product: T, key: String, value: Any): CamundaVariable
def toCamunda[T <: Product : Encoder](products: Seq[T]): Seq[Map[String, CamundaVariable]]
def toCamunda[T <: Product : Encoder](product: T): Map[String, CamundaVariable]
def valueToCamunda(value: Any): CamundaVariable