diff --git a/.ci/api-current.txt b/.ci/api-current.txt index 52a0a07f24..2567e30a08 100644 --- a/.ci/api-current.txt +++ b/.ci/api-current.txt @@ -2855,27 +2855,27 @@ public final class net.corda.core.schemas.CommonSchemaV1 extends net.corda.core. @javax.persistence.MappedSuperclass @net.corda.core.serialization.CordaSerializable public static class net.corda.core.schemas.CommonSchemaV1$FungibleState extends net.corda.core.schemas.PersistentState public () public (Set, net.corda.core.identity.AbstractParty, long, net.corda.core.identity.AbstractParty, byte[]) - @org.jetbrains.annotations.NotNull public final net.corda.core.identity.AbstractParty getIssuer() - @org.jetbrains.annotations.NotNull public final byte[] getIssuerRef() - @org.jetbrains.annotations.NotNull public final net.corda.core.identity.AbstractParty getOwner() + @org.jetbrains.annotations.NotNull public net.corda.core.identity.AbstractParty getIssuer() + @org.jetbrains.annotations.NotNull public byte[] getIssuerRef() + @org.jetbrains.annotations.NotNull public net.corda.core.identity.AbstractParty getOwner() @org.jetbrains.annotations.Nullable public Set getParticipants() - public final long getQuantity() - public final void setIssuer(net.corda.core.identity.AbstractParty) - public final void setIssuerRef(byte[]) - public final void setOwner(net.corda.core.identity.AbstractParty) + public long getQuantity() + public void setIssuer(net.corda.core.identity.AbstractParty) + public void setIssuerRef(byte[]) + public void setOwner(net.corda.core.identity.AbstractParty) public void setParticipants(Set) - public final void setQuantity(long) + public void setQuantity(long) ## @javax.persistence.MappedSuperclass @net.corda.core.serialization.CordaSerializable public static class net.corda.core.schemas.CommonSchemaV1$LinearState extends net.corda.core.schemas.PersistentState public () public (Set, String, UUID) public (net.corda.core.contracts.UniqueIdentifier, Set) - @org.jetbrains.annotations.Nullable public final String getExternalId() + @org.jetbrains.annotations.Nullable public String getExternalId() @org.jetbrains.annotations.Nullable public Set getParticipants() - @org.jetbrains.annotations.NotNull public final UUID getUuid() - public final void setExternalId(String) + @org.jetbrains.annotations.NotNull public UUID getUuid() + public void setExternalId(String) public void setParticipants(Set) - public final void setUuid(UUID) + public void setUuid(UUID) ## public class net.corda.core.schemas.MappedSchema extends java.lang.Object public (Class, int, Iterable) @@ -2888,10 +2888,10 @@ public class net.corda.core.schemas.MappedSchema extends java.lang.Object @javax.persistence.MappedSuperclass @net.corda.core.serialization.CordaSerializable public class net.corda.core.schemas.PersistentState extends java.lang.Object implements net.corda.core.schemas.StatePersistable public () public (net.corda.core.schemas.PersistentStateRef) - @org.jetbrains.annotations.Nullable public final net.corda.core.schemas.PersistentStateRef getStateRef() - public final void setStateRef(net.corda.core.schemas.PersistentStateRef) + @org.jetbrains.annotations.Nullable public net.corda.core.schemas.PersistentStateRef getStateRef() + public void setStateRef(net.corda.core.schemas.PersistentStateRef) ## -@javax.persistence.Embeddable public final class net.corda.core.schemas.PersistentStateRef extends java.lang.Object implements java.io.Serializable +@javax.persistence.Embeddable public class net.corda.core.schemas.PersistentStateRef extends java.lang.Object implements java.io.Serializable public () public (String, Integer) public (net.corda.core.contracts.StateRef) @@ -2899,18 +2899,18 @@ public class net.corda.core.schemas.MappedSchema extends java.lang.Object @org.jetbrains.annotations.Nullable public final Integer component2() @org.jetbrains.annotations.NotNull public final net.corda.core.schemas.PersistentStateRef copy(String, Integer) public boolean equals(Object) - @org.jetbrains.annotations.Nullable public final Integer getIndex() - @org.jetbrains.annotations.Nullable public final String getTxId() + @org.jetbrains.annotations.Nullable public Integer getIndex() + @org.jetbrains.annotations.Nullable public String getTxId() public int hashCode() - public final void setIndex(Integer) - public final void setTxId(String) + public void setIndex(Integer) + public void setTxId(String) public String toString() ## @net.corda.core.serialization.CordaSerializable public interface net.corda.core.schemas.QueryableState extends net.corda.core.contracts.ContractState @org.jetbrains.annotations.NotNull public abstract net.corda.core.schemas.PersistentState generateMappedObject(net.corda.core.schemas.MappedSchema) @org.jetbrains.annotations.NotNull public abstract Iterable supportedSchemas() ## -public interface net.corda.core.schemas.StatePersistable +public interface net.corda.core.schemas.StatePersistable extends java.io.Serializable ## public interface net.corda.core.serialization.ClassWhitelist public abstract boolean hasListed(Class) diff --git a/build.gradle b/build.gradle index ce304a95be..2806c48f48 100644 --- a/build.gradle +++ b/build.gradle @@ -111,6 +111,7 @@ buildscript { } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version" classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4' classpath "net.corda.plugins:publish-utils:$gradle_plugins_version" classpath "net.corda.plugins:quasar-utils:$gradle_plugins_version" @@ -158,6 +159,15 @@ allprojects { apply plugin: 'java' apply plugin: 'jacoco' apply plugin: 'org.owasp.dependencycheck' + apply plugin: 'kotlin-allopen' + + allOpen { + annotations( + "javax.persistence.Entity", + "javax.persistence.Embeddable", + "javax.persistence.MappedSuperclass" + ) + } dependencyCheck { suppressionFile = '.ci/dependency-checker/suppressedLibraries.xml' diff --git a/core/src/main/kotlin/net/corda/core/schemas/PersistentTypes.kt b/core/src/main/kotlin/net/corda/core/schemas/PersistentTypes.kt index 2944727b1e..3b0eda9e09 100644 --- a/core/src/main/kotlin/net/corda/core/schemas/PersistentTypes.kt +++ b/core/src/main/kotlin/net/corda/core/schemas/PersistentTypes.kt @@ -88,4 +88,4 @@ data class PersistentStateRef( /** * Marker interface to denote a persistable Corda state entity that will always have a transaction id and index */ -interface StatePersistable \ No newline at end of file +interface StatePersistable : Serializable \ No newline at end of file diff --git a/docs/source/serialization.rst b/docs/source/serialization.rst index 36ba5addd5..e62a129255 100644 --- a/docs/source/serialization.rst +++ b/docs/source/serialization.rst @@ -449,6 +449,85 @@ associates it with the actual member variable. fun getStatesToConsume() = states } +Mutable Containers +`````````````````` + +Because Java fundamentally provides no mechanism by which the mutability of a class can be determined this presents a +problem for the serialization framework. When reconstituting objects with container properties (lists, maps, etc) we +must chose whether to create mutable or immutable objects. Given the restrictions, we have decided it is better to +preserve the immutability of immutable objects rather than force mutability on presumed immutable objects. + +.. note:: Whilst we could potentially infer mutability empirically, doing so exhaustively is impossible as it's a design + decision rather than something intrinsic to the JVM. At present, we defer to simply making things immutable on reconstruction + with the following workarounds provided for those who use them. In future, this may change, but for now use the following + examples as a guide. + +For example, consider the following: + +.. sourcecode:: kotlin + + data class C(val l : MutableList) + + val bytes = C(mutableListOf ("a", "b", "c")).serialize() + val newC = bytes.deserialize() + + newC.l.add("d") + +The call to ``newC.l.add`` will throw an ``UnsupportedOperationException``. + +There are several workarounds that can be used to preserve mutability on reconstituted objects. Firstly, if the class +isn't a Kotlin data class and thus isn't restricted by having to have a primary constructor. + +.. sourcecode:: kotlin + + class C { + val l : MutableList + + @Suppress("Unused") + constructor (l : MutableList) { + this.l = l.toMutableList() + } + } + + val bytes = C(mutableListOf ("a", "b", "c")).serialize() + val newC = bytes.deserialize() + + // This time this call will succeed + newC.l.add("d") + +Secondly, if the class is a Kotlin data class, a secondary constructor can be used. + +.. sourcecode:: kotlin + + data class C (val l : MutableList){ + @ConstructorForDeserialization + @Suppress("Unused") + constructor (l : Collection) : this (l.toMutableList()) + } + + val bytes = C(mutableListOf ("a", "b", "c")).serialize() + val newC = bytes.deserialize() + + // This will also work + newC.l.add("d") + +Thirdly, to preserve immutability of objects (a recommend design principle - Copy on Write semantics) then mutating the +contents of the class can be done by creating a new copy of the data class with the altered list passed (in this example) +passed in as the Constructor parameter. + +.. sourcecode:: kotlin + + data class C(val l : List) + + val bytes = C(listOf ("a", "b", "c")).serialize() + val newC = bytes.deserialize() + + val newC2 = newC.copy (l = (newC.l + "d")) + +.. note:: If mutability isn't an issue at all then in the case of data classes a single constructor can + be used by making the property var instead of val and in the ``init`` block reassigning the property + to a mutable instance + Enums ````` diff --git a/node-api/src/test/kotlin/net/corda/nodeapi/internal/serialization/amqp/RoundTripTests.kt b/node-api/src/test/kotlin/net/corda/nodeapi/internal/serialization/amqp/RoundTripTests.kt new file mode 100644 index 0000000000..f42823a862 --- /dev/null +++ b/node-api/src/test/kotlin/net/corda/nodeapi/internal/serialization/amqp/RoundTripTests.kt @@ -0,0 +1,60 @@ +package net.corda.nodeapi.internal.serialization.amqp + +import net.corda.core.serialization.ConstructorForDeserialization +import org.assertj.core.api.Assertions +import org.junit.Test + +class RoundTripTests { + @Test + fun mutableBecomesImmutable() { + data class C(val l : MutableList) + val factory = testDefaultFactoryNoEvolution() + val bytes = SerializationOutput(factory).serialize(C(mutableListOf ("a", "b", "c"))) + val newC = DeserializationInput(factory).deserialize(bytes) + + Assertions.assertThatThrownBy { + newC.l.add("d") + }.isInstanceOf(UnsupportedOperationException::class.java) + } + + @Test + fun mutableStillMutable() { + class C { + val l : MutableList + + @Suppress("Unused") + constructor (l : MutableList) { + this.l = l.toMutableList() + } + } + val factory = testDefaultFactoryNoEvolution() + val bytes = SerializationOutput(factory).serialize(C(mutableListOf ("a", "b", "c"))) + val newC = DeserializationInput(factory).deserialize(bytes) + + newC.l.add("d") + } + + @Test + fun mutableStillMutable2() { + data class C (val l : MutableList){ + @ConstructorForDeserialization + @Suppress("Unused") + constructor (l : Collection) : this (l.toMutableList()) + } + + val factory = testDefaultFactoryNoEvolution() + val bytes = SerializationOutput(factory).serialize(C(mutableListOf ("a", "b", "c"))) + val newC = DeserializationInput(factory).deserialize(bytes) + + newC.l.add("d") + } + + @Test + fun mutableBecomesImmutable4() { + data class C(val l : List) + val factory = testDefaultFactoryNoEvolution() + val bytes = SerializationOutput(factory).serialize(C(listOf ("a", "b", "c"))) + val newC = DeserializationInput(factory).deserialize(bytes) + val newC2 = newC.copy (l = (newC.l + "d")) + } +} \ No newline at end of file diff --git a/node/src/main/kotlin/net/corda/node/internal/schemas/NodeInfoSchema.kt b/node/src/main/kotlin/net/corda/node/internal/schemas/NodeInfoSchema.kt index 464ddea18d..1559157ba0 100644 --- a/node/src/main/kotlin/net/corda/node/internal/schemas/NodeInfoSchema.kt +++ b/node/src/main/kotlin/net/corda/node/internal/schemas/NodeInfoSchema.kt @@ -20,6 +20,7 @@ import net.corda.core.serialization.serialize import net.corda.core.utilities.MAX_HASH_HEX_SIZE import net.corda.core.utilities.NetworkHostAndPort import net.corda.node.services.persistence.NodePropertiesPersistentStore +import java.io.Serializable import javax.persistence.* object NodeInfoSchema @@ -65,7 +66,7 @@ object NodeInfoSchemaV1 : MappedSchema( */ @Column(name = "serial") val serial: Long - ) { + ) : Serializable { fun toNodeInfo(): NodeInfo { return NodeInfo( this.addresses.map { it.toHostAndPort() }, @@ -85,7 +86,7 @@ object NodeInfoSchemaV1 : MappedSchema( var id: Int, val host: String? = null, val port: Int? = null - ) { + ) : Serializable { companion object { fun fromHostAndPort(hostAndPort: NetworkHostAndPort) = DBHostAndPort( 0, hostAndPort.host, hostAndPort.port @@ -118,7 +119,7 @@ object NodeInfoSchemaV1 : MappedSchema( @ManyToMany(mappedBy = "legalIdentitiesAndCerts", cascade = arrayOf(CascadeType.ALL)) // ManyToMany because of distributed services. private val persistentNodeInfos: Set = emptySet() - ) { + ) : Serializable { constructor(partyAndCert: PartyAndCertificate, isMain: Boolean = false) : this(partyAndCert.name.toString(), partyAndCert.party.owningKey.toStringShort(), diff --git a/node/src/main/kotlin/net/corda/node/services/events/NodeSchedulerService.kt b/node/src/main/kotlin/net/corda/node/services/events/NodeSchedulerService.kt index b02eeaf275..4583018ac0 100644 --- a/node/src/main/kotlin/net/corda/node/services/events/NodeSchedulerService.kt +++ b/node/src/main/kotlin/net/corda/node/services/events/NodeSchedulerService.kt @@ -43,6 +43,7 @@ import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import org.apache.activemq.artemis.utils.ReusableLatch import org.apache.mina.util.ConcurrentHashSet import org.slf4j.Logger +import java.io.Serializable import java.time.Duration import java.time.Instant import java.util.* @@ -166,7 +167,7 @@ class NodeSchedulerService(private val clock: CordaClock, @Column(name = "scheduled_at", nullable = false) var scheduledAt: Instant = Instant.now() - ) + ) : Serializable private class InnerState { var scheduledStatesQueue: PriorityQueue = PriorityQueue({ a, b -> a.scheduledAt.compareTo(b.scheduledAt) }) diff --git a/node/src/main/kotlin/net/corda/node/services/identity/PersistentIdentityService.kt b/node/src/main/kotlin/net/corda/node/services/identity/PersistentIdentityService.kt index 2bbc29d1f1..12547ae72d 100644 --- a/node/src/main/kotlin/net/corda/node/services/identity/PersistentIdentityService.kt +++ b/node/src/main/kotlin/net/corda/node/services/identity/PersistentIdentityService.kt @@ -27,6 +27,7 @@ import net.corda.nodeapi.internal.crypto.X509Utilities import net.corda.nodeapi.internal.crypto.x509Certificates import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import org.apache.commons.lang.ArrayUtils.EMPTY_BYTE_ARRAY +import java.io.Serializable import java.security.InvalidAlgorithmParameterException import java.security.PublicKey import java.security.cert.* @@ -85,7 +86,7 @@ class PersistentIdentityService(override val trustRoot: X509Certificate, @Lob @Column(name = "identity_value") var identity: ByteArray = EMPTY_BYTE_ARRAY - ) + ) : Serializable @Entity @javax.persistence.Table(name = "${NODE_DATABASE_PREFIX}named_identities") @@ -96,7 +97,7 @@ class PersistentIdentityService(override val trustRoot: X509Certificate, @Column(name = "pk_hash", length = MAX_HASH_HEX_SIZE) var publicKeyHash: String = "" - ) + ) : Serializable override val caCertStore: CertStore override val trustAnchor: TrustAnchor = TrustAnchor(trustRoot, null) diff --git a/node/src/main/kotlin/net/corda/node/services/keys/PersistentKeyManagementService.kt b/node/src/main/kotlin/net/corda/node/services/keys/PersistentKeyManagementService.kt index c41948f192..fc7f039ce9 100644 --- a/node/src/main/kotlin/net/corda/node/services/keys/PersistentKeyManagementService.kt +++ b/node/src/main/kotlin/net/corda/node/services/keys/PersistentKeyManagementService.kt @@ -20,6 +20,7 @@ import net.corda.node.utilities.AppendOnlyPersistentMap import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import org.apache.commons.lang.ArrayUtils.EMPTY_BYTE_ARRAY import org.bouncycastle.operator.ContentSigner +import java.io.Serializable import java.security.KeyPair import java.security.PrivateKey import java.security.PublicKey @@ -51,7 +52,7 @@ class PersistentKeyManagementService(val identityService: IdentityService, @Lob @Column(name = "private_key") var privateKey: ByteArray = EMPTY_BYTE_ARRAY - ) { + ) : Serializable { constructor(publicKey: PublicKey, privateKey: PrivateKey) : this(publicKey.toStringShort(), publicKey.encoded, privateKey.encoded) } diff --git a/node/src/main/kotlin/net/corda/node/services/messaging/P2PMessagingClient.kt b/node/src/main/kotlin/net/corda/node/services/messaging/P2PMessagingClient.kt index c85e9cd8e8..51b41bbccc 100644 --- a/node/src/main/kotlin/net/corda/node/services/messaging/P2PMessagingClient.kt +++ b/node/src/main/kotlin/net/corda/node/services/messaging/P2PMessagingClient.kt @@ -71,6 +71,7 @@ import org.apache.commons.lang.ArrayUtils.EMPTY_BYTE_ARRAY import rx.Observable import rx.Subscription import rx.subjects.PublishSubject +import java.io.Serializable import java.security.PublicKey import java.time.Instant import java.util.* @@ -191,6 +192,17 @@ class P2PMessagingClient(val config: NodeConfiguration, private val deduplicator = P2PMessageDeduplicator(database) internal var messagingExecutor: MessagingExecutor? = null + @Entity + @javax.persistence.Table(name = "${NODE_DATABASE_PREFIX}message_ids") + class ProcessedMessage( + @Id + @Column(name = "message_id", length = 64) + var uuid: String = "", + + @Column(name = "insertion_time") + var insertionTime: Instant = Instant.now() + ) : Serializable + @Entity @javax.persistence.Table(name = "${NODE_DATABASE_PREFIX}message_retry") class RetryMessage( @@ -204,7 +216,7 @@ class P2PMessagingClient(val config: NodeConfiguration, @Lob @Column var recipients: ByteArray = EMPTY_BYTE_ARRAY - ) + ) : Serializable fun start() { state.locked { @@ -713,4 +725,4 @@ private fun ReactiveArtemisConsumer.switchTo(other: ReactiveArtemisConsumer) { !other.started -> other.start() !other.connected -> other.connect() } -} \ No newline at end of file +} diff --git a/node/src/main/kotlin/net/corda/node/services/persistence/DBCheckpointStorage.kt b/node/src/main/kotlin/net/corda/node/services/persistence/DBCheckpointStorage.kt index 5506068865..4bcf516049 100644 --- a/node/src/main/kotlin/net/corda/node/services/persistence/DBCheckpointStorage.kt +++ b/node/src/main/kotlin/net/corda/node/services/persistence/DBCheckpointStorage.kt @@ -21,6 +21,7 @@ import org.apache.commons.lang.ArrayUtils.EMPTY_BYTE_ARRAY import org.slf4j.LoggerFactory import java.util.* import java.util.stream.Stream +import java.io.Serializable import javax.persistence.Column import javax.persistence.Entity import javax.persistence.Id @@ -42,7 +43,7 @@ class DBCheckpointStorage : CheckpointStorage { @Lob @Column(name = "checkpoint_value") var checkpoint: ByteArray = EMPTY_BYTE_ARRAY - ) + ) : Serializable override fun addCheckpoint(id: StateMachineRunId, checkpoint: SerializedBytes) { currentDBSession().saveOrUpdate(DBCheckpoint().apply { diff --git a/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionMappingStorage.kt b/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionMappingStorage.kt index 7ebbbe442c..c60e78ebf2 100644 --- a/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionMappingStorage.kt +++ b/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionMappingStorage.kt @@ -22,6 +22,7 @@ import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import net.corda.nodeapi.internal.persistence.bufferUntilDatabaseCommit import net.corda.nodeapi.internal.persistence.wrapWithDatabaseTransaction import rx.subjects.PublishSubject +import java.io.Serializable import java.util.* import javax.annotation.concurrent.ThreadSafe import javax.persistence.Column @@ -46,7 +47,7 @@ class DBTransactionMappingStorage : StateMachineRecordedTransactionMappingStorag @Column(name = "state_machine_run_id", length = 36) var stateMachineRunId: String = "" - ) + ) : Serializable private companion object { fun createMap(): AppendOnlyPersistentMap { diff --git a/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionStorage.kt b/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionStorage.kt index 80a4122090..0e71ebbf83 100644 --- a/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionStorage.kt +++ b/node/src/main/kotlin/net/corda/node/services/persistence/DBTransactionStorage.kt @@ -32,6 +32,7 @@ import net.corda.nodeapi.internal.serialization.CordaSerializationEncoding.SNAPP import org.apache.commons.lang.ArrayUtils.EMPTY_BYTE_ARRAY import rx.Observable import rx.subjects.PublishSubject +import java.io.Serializable import java.util.* import javax.persistence.* @@ -52,7 +53,7 @@ class DBTransactionStorage(cacheSizeBytes: Long) : WritableTransactionStorage, S @Lob @Column(name = "transaction_value") var transaction: ByteArray = EMPTY_BYTE_ARRAY - ) + ) : Serializable private companion object { fun createTransactionsMap(maxSizeInBytes: Long) diff --git a/node/src/main/kotlin/net/corda/node/services/persistence/NodePropertiesPersistentStore.kt b/node/src/main/kotlin/net/corda/node/services/persistence/NodePropertiesPersistentStore.kt index 1781dadd92..983edeb8a1 100644 --- a/node/src/main/kotlin/net/corda/node/services/persistence/NodePropertiesPersistentStore.kt +++ b/node/src/main/kotlin/net/corda/node/services/persistence/NodePropertiesPersistentStore.kt @@ -19,6 +19,7 @@ import net.corda.nodeapi.internal.persistence.CordaPersistence import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import org.slf4j.Logger import rx.subjects.PublishSubject +import java.io.Serializable import javax.persistence.Column import javax.persistence.Entity import javax.persistence.Id @@ -44,7 +45,7 @@ class NodePropertiesPersistentStore(readPhysicalNodeId: () -> String, persistenc @Column(name = "property_value") var value: String? = "" - ) + ) : Serializable } private class FlowsDrainingModeOperationsImpl(readPhysicalNodeId: () -> String, private val persistence: CordaPersistence, logger: Logger) : FlowsDrainingModeOperations { diff --git a/node/src/main/kotlin/net/corda/node/services/transactions/PersistentUniquenessProvider.kt b/node/src/main/kotlin/net/corda/node/services/transactions/PersistentUniquenessProvider.kt index 4d977c7778..043ac9ac44 100644 --- a/node/src/main/kotlin/net/corda/node/services/transactions/PersistentUniquenessProvider.kt +++ b/node/src/main/kotlin/net/corda/node/services/transactions/PersistentUniquenessProvider.kt @@ -28,6 +28,7 @@ import net.corda.core.utilities.contextLogger import net.corda.node.utilities.AppendOnlyPersistentMap import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import net.corda.nodeapi.internal.persistence.currentDBSession +import java.io.Serializable import java.time.Clock import java.time.Instant import java.util.* @@ -44,7 +45,7 @@ class PersistentUniquenessProvider(val clock: Clock) : UniquenessProvider, Singl @Column(name = "consuming_transaction_id") val consumingTxHash: String - ) + ) : Serializable @Entity @javax.persistence.Table(name = "${NODE_DATABASE_PREFIX}notary_request_log") @@ -66,7 +67,7 @@ class PersistentUniquenessProvider(val clock: Clock) : UniquenessProvider, Singl @Column(name = "request_timestamp") var requestDate: Instant - ) + ) : Serializable @Entity @javax.persistence.Table(name = "${NODE_DATABASE_PREFIX}notary_committed_states") diff --git a/node/src/main/kotlin/net/corda/node/services/transactions/RaftUniquenessProvider.kt b/node/src/main/kotlin/net/corda/node/services/transactions/RaftUniquenessProvider.kt index 27fa9d570d..d09f2bf292 100644 --- a/node/src/main/kotlin/net/corda/node/services/transactions/RaftUniquenessProvider.kt +++ b/node/src/main/kotlin/net/corda/node/services/transactions/RaftUniquenessProvider.kt @@ -42,6 +42,7 @@ import net.corda.nodeapi.internal.config.NodeSSLConfiguration import net.corda.nodeapi.internal.config.SSLConfiguration import net.corda.nodeapi.internal.persistence.CordaPersistence import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX +import java.io.Serializable import java.nio.file.Path import java.time.Clock import java.util.concurrent.CompletableFuture @@ -104,7 +105,7 @@ class RaftUniquenessProvider( var value: String = "", @Column(name = "raft_log_index") var index: Long = 0 - ) + ) : Serializable /** Directory storing the Raft log and state machine snapshots */ private val storagePath: Path = transportConfiguration.baseDirectory diff --git a/node/src/main/kotlin/net/corda/node/services/upgrade/ContractUpgradeServiceImpl.kt b/node/src/main/kotlin/net/corda/node/services/upgrade/ContractUpgradeServiceImpl.kt index e1f2c442c0..0c279bf76d 100644 --- a/node/src/main/kotlin/net/corda/node/services/upgrade/ContractUpgradeServiceImpl.kt +++ b/node/src/main/kotlin/net/corda/node/services/upgrade/ContractUpgradeServiceImpl.kt @@ -16,6 +16,7 @@ import net.corda.core.node.services.ContractUpgradeService import net.corda.core.serialization.SingletonSerializeAsToken import net.corda.nodeapi.internal.persistence.NODE_DATABASE_PREFIX import net.corda.node.utilities.PersistentMap +import java.io.Serializable import javax.persistence.Column import javax.persistence.Entity import javax.persistence.Id @@ -33,7 +34,7 @@ class ContractUpgradeServiceImpl : ContractUpgradeService, SingletonSerializeAsT /** refers to the UpgradedContract class name*/ @Column(name = "contract_class_name") var upgradedContractClassName: String = "" - ) + ) : Serializable private companion object { fun createContractUpgradesMap(): PersistentMap { diff --git a/node/src/test/kotlin/net/corda/node/services/schema/NodeSchemaServiceTest.kt b/node/src/test/kotlin/net/corda/node/services/schema/NodeSchemaServiceTest.kt index 6a2d727399..a7d3433f57 100644 --- a/node/src/test/kotlin/net/corda/node/services/schema/NodeSchemaServiceTest.kt +++ b/node/src/test/kotlin/net/corda/node/services/schema/NodeSchemaServiceTest.kt @@ -30,6 +30,7 @@ import org.hibernate.annotations.Cascade import org.hibernate.annotations.CascadeType import org.junit.Ignore import org.junit.Test +import java.io.Serializable import javax.persistence.* import kotlin.test.assertEquals import kotlin.test.assertFalse @@ -164,4 +165,4 @@ object TestSchema : MappedSchema(SchemaFamily::class.java, 1, setOf(Parent::clas @JoinColumns(JoinColumn(name = "transaction_id", referencedColumnName = "transaction_id"), JoinColumn(name = "output_index", referencedColumnName = "output_index")) var parent: Parent? = null } -} \ No newline at end of file +}