corda / net.corda.core.cordapp / CordappInfo

CordappInfo

data class CordappInfo

A CordappInfo describes a single CorDapp currently installed on the node

Parameters

type - A description of what sort of CorDapp this is - either a contract, workflow, or a combination.

name - The name of the JAR file that defines the CorDapp

shortName - The name of the CorDapp

minimumPlatformVersion - The minimum platform version the node must be at for the CorDapp to run

targetPlatformVersion - The target platform version this CorDapp has been tested against

version - The version of this CorDapp

vendor - The vendor of this CorDapp

licence - The name of the licence this CorDapp is released under

jarHash - The hash of the JAR file that defines this CorDapp

Constructors

<init>

A CordappInfo describes a single CorDapp currently installed on the node

CordappInfo(type: String, name: String, shortName: String, minimumPlatformVersion: Int, targetPlatformVersion: Int, version: String, vendor: String, licence: String, jarHash: SHA256)

Properties

jarHash

The hash of the JAR file that defines this CorDapp

val jarHash: SHA256

licence

The name of the licence this CorDapp is released under

val licence: String

minimumPlatformVersion

The minimum platform version the node must be at for the CorDapp to run

val minimumPlatformVersion: Int

name

The name of the JAR file that defines the CorDapp

val name: String

shortName

The name of the CorDapp

val shortName: String

targetPlatformVersion

The target platform version this CorDapp has been tested against

val targetPlatformVersion: Int

type

A description of what sort of CorDapp this is - either a contract, workflow, or a combination.

val type: String

vendor

The vendor of this CorDapp

val vendor: String

version

The version of this CorDapp

val version: String