package faciapress
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- final case class FrontPath(get: String) extends AnyVal with Product with Serializable
- case class PressJob(path: FrontPath, pressType: PressType, creationTime: DateTime = DateTime.now, forceConfigUpdate: Option[Boolean] = Option(false)) extends Product with Serializable
- sealed trait PressType extends AnyRef
Value Members
- object Draft extends PressType with Product with Serializable
- object FrontPath extends Serializable
- object Live extends PressType with Product with Serializable
- object PressJob extends Serializable
-
object
PressType
Strictly speaking, these models aren't part of the facia API - they are specific to communication between the fronts tool and facia-press in the frontend project.
Strictly speaking, these models aren't part of the facia API - they are specific to communication between the fronts tool and facia-press in the frontend project. It's useful to enforce consistency between the two apps though to avoid messages failing to parse, and this seems the most obvious place to put them, so here they are.