corda / net.corda.core.node.services.diagnostics / NodeVersionInfo

NodeVersionInfo

data class NodeVersionInfo

Version info about the node. Note that this data should be used for diagnostics purposes only - it is unsafe to rely on this for functional decisions.

Parameters

releaseVersion - The release version string of the node, e.g. 4.3, 4.4-SNAPSHOT.

revision - The git commit hash this node was built from

platformVersion - The platform version of this node, representing the released API version.

vendor - The vendor of this node

Constructors

<init>

Version info about the node. Note that this data should be used for diagnostics purposes only - it is unsafe to rely on this for functional decisions.

NodeVersionInfo(releaseVersion: String, revision: String, platformVersion: Int, vendor: String)

Properties

platformVersion

The platform version of this node, representing the released API version.

val platformVersion: Int

releaseVersion

The release version string of the node, e.g. 4.3, 4.4-SNAPSHOT.

val releaseVersion: String

revision

The git commit hash this node was built from

val revision: String

vendor

The vendor of this node

val vendor: String