Fix java serialization
This commit is contained in:
@@ -8,6 +8,8 @@ akka {
|
||||
plugin = "cassandra-journal"
|
||||
}
|
||||
}
|
||||
|
||||
actor.allow-java-serialization = on
|
||||
}
|
||||
|
||||
cassandra-journal {
|
||||
|
||||
@@ -106,9 +106,13 @@ object CzechPostDeliveryCheck {
|
||||
private case class ParcelHistoryRetrieved(parcelHistory: Entities.ParcelHistory) extends Command
|
||||
case class DeliveryStateChanged(state: String)
|
||||
|
||||
@SerialVersionUID(1L)
|
||||
case class ParcelAdded(parcelId: String, comment: String) extends Event
|
||||
@SerialVersionUID(1L)
|
||||
case class ParcelRemoved(parcelId: String) extends Event
|
||||
@SerialVersionUID(1L)
|
||||
case class ParcelHistoryStateAdded(parcelId: String, state: Entities.State) extends Event
|
||||
@SerialVersionUID(1L)
|
||||
case class ParcelAttributesChanged(parcelId: String, attributes: Entities.Attributes) extends Event
|
||||
|
||||
private val trustfulSslContext: SSLContext = {
|
||||
|
||||
Reference in New Issue
Block a user