Packages

object LanguageEntity extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LanguageEntity
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Command extends CommandSerializable
  2. trait CommandSerializable extends AnyRef
  3. sealed trait Confirmation extends AnyRef
  4. final case class CreateLanguage(id: LanguageId, name: String, createdBy: AnnettePrincipal, replyTo: ActorRef[Confirmation]) extends Command with Product with Serializable
  5. final case class DeleteLanguage(id: LanguageId, deletedBy: AnnettePrincipal, replyTo: ActorRef[Confirmation]) extends Command with Product with Serializable
  6. sealed trait Event extends AggregateEvent[Event]
  7. final case class GetLanguage(id: LanguageId, replyTo: ActorRef[Confirmation]) extends Command with Product with Serializable
  8. final case class LanguageCreated(id: LanguageId, name: String, createdBy: AnnettePrincipal, createdAt: OffsetDateTime = OffsetDateTime.now) extends Event with Product with Serializable
  9. final case class LanguageDeleted(id: LanguageId, deletedBy: AnnettePrincipal, deletedAt: OffsetDateTime = OffsetDateTime.now) extends Event with Product with Serializable
  10. final case class LanguageUpdated(id: LanguageId, name: String, updatedBy: AnnettePrincipal, updatedAt: OffsetDateTime = OffsetDateTime.now) extends Event with Product with Serializable
  11. final case class SuccessLanguage(language: Language) extends Confirmation with Product with Serializable
  12. final case class UpdateLanguage(id: LanguageId, name: String, updatedBy: AnnettePrincipal, replyTo: ActorRef[Confirmation]) extends Command 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. def apply(entityContext: EntityContext[Command]): Behavior[Command]
  5. def apply(persistenceId: PersistenceId): EventSourcedBehavior[Command, Event, LanguageEntity]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. implicit val confirmationFormat: Format[Confirmation]
  9. implicit val confirmationLanguageAlreadyExistFormat: Format[LanguageAlreadyExist.type]
  10. implicit val confirmationLanguageNotFoundFormat: Format[LanguageNotFound.type]
  11. implicit val confirmationSuccessFormat: Format[Success.type]
  12. implicit val confirmationSuccessLanguageFormat: Format[SuccessLanguage]
  13. val empty: LanguageEntity
  14. implicit val entityFormat: Format[LanguageEntity]
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. implicit val eventLanguageCreatedFormat: Format[LanguageCreated]
  18. implicit val eventLanguageDeletedFormat: Format[LanguageDeleted]
  19. implicit val eventLanguageUpdatedFormat: Format[LanguageUpdated]
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. val typeKey: EntityTypeKey[Command]
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. object Event
  33. case object LanguageAlreadyExist extends Confirmation with Product with Serializable
  34. case object LanguageNotFound extends Confirmation with Product with Serializable
  35. case object Success extends Confirmation with Product with Serializable

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 AnyRef

Inherited from Any

Ungrouped