object Action

Creates actions.

Source
Action.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Action
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def composite[T <: ObjectResource](actions: Iterable[Action]): CompositeAction[T]

    Creates a CompositeAction.

    Creates a CompositeAction. A single action that encapsulates other actions.

  7. def createOrPatch[T <: ObjectResource, O <: Patch](resource: T, patch: O)(implicit format: Format[T], patchWriter: Writes[O], resourceDefinition: ResourceDefinition[T]): CreateOrPatchAction[T, O]
  8. def createOrUpdate[T <: ObjectResource](resource: T, editor: ObjectEditor[T])(implicit format: Format[T], resourceDefinition: ResourceDefinition[T]): CreateOrUpdateAction[T]

    Creates a CreateOrUpdateAction.

  9. def delete[T <: ObjectResource](resourceName: String, namespace: String)(implicit resourceDefinition: ResourceDefinition[T]): DeleteAction[T]

    Creates a DeleteAction.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def executed(action: Action): String

    Log message for when an Action has been executed.

  13. def executing(action: Action): String

    Log message for when an Action is about to get executed.

  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val log: Logger
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def noop: NoopAction.type
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def patch[T <: ObjectResource, O <: Patch](resource: T, patch: O)(implicit format: Format[T], patchWriter: Writes[O], resourceDefinition: ResourceDefinition[T]): PatchAction[T, O]

    Creates an PatchAction.

  23. def provided[T <: ObjectResource](resourceName: String, namespace: String)(fAction: (Option[T]) ⇒ Action)(implicit format: Format[T], resourceDefinition: ResourceDefinition[T]): ProvidedAction[T]

    Creates an action provided that a resource with resourceName in namespace is found.

  24. def providedByLabel[T <: ObjectResource](labelKey: String, labelValues: Vector[String], namespace: String)(fAction: (ListResource[T]) ⇒ Action)(implicit format: Format[T], resourceDefinition: ResourceDefinition[ListResource[T]]): ProvidedByLabelAction[T]

    Creates an action provided that a list of resources with a label in a namespace are found.

  25. def providedRetry[T <: ObjectResource](resourceName: String, namespace: String)(fAction: (Option[T]) ⇒ Action)(implicit format: Format[T], resourceDefinition: ResourceDefinition[T]): ProvidedAction[T]
  26. def providedRetry[T <: ObjectResource](resourceName: String, namespace: String, getRetries: Int)(fAction: (Option[T]) ⇒ Action)(implicit format: Format[T], resourceDefinition: ResourceDefinition[T]): ProvidedAction[T]
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def updateStatus[T <: ObjectResource](resource: T, editor: ObjectEditor[T], predicateForUpdate: (Option[T], T) ⇒ Boolean = (_: Option[T], _: T) => true)(implicit format: Format[T], resourceDefinition: ResourceDefinition[T], statusEv: HasStatusSubresource[T]): UpdateStatusAction[T]

    Creates an UpdateStatusAction.

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

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped