com.github.manosbatsis.corda.testacles.common.corda / SimpleNodeConfig
SimpleNodeConfig¶
data class SimpleNodeConfig
Constructors¶
Name | Summary |
---|---|
<init> | SimpleNodeConfig(myLegalName: CordaX500Name, p2pAddress: NetworkHostAndPort, rpcSettings: NodeRpcSettings, webAddress: NetworkHostAndPort? = null, notary: NotaryService ? = null, h2port: Int ? = null, rpcUsers: MutableList <User> = mutableListOf(), security: SecurityConfiguration?, dataSourceProperties: Properties ? = null, database: Properties ? = null, systemProperties: Map < String , Any ?>? = null, devMode: Boolean = true, detectPublicIp: Boolean ? = false, useTestClock: Boolean ? = true) |
Properties¶
Name | Summary |
---|---|
database | var database: Properties ? |
dataSourceProperties | var dataSourceProperties: Properties ? Pass-through for generating node.conf with external DB |
detectPublicIp | var detectPublicIp: Boolean ? |
devMode | var devMode: Boolean |
h2port | var h2port: Int ? |
myLegalName | var myLegalName: CordaX500Name |
notary | var notary: NotaryService ? |
p2pAddress | var p2pAddress: NetworkHostAndPort |
rpcSettings | var rpcSettings: NodeRpcSettings |
rpcUsers | var rpcUsers: MutableList <User> |
security | val security: SecurityConfiguration? |
systemProperties | var systemProperties: Map < String , Any ?>? |
useTestClock | var useTestClock: Boolean ? |
webAddress | var webAddress: NetworkHostAndPort? This is not used by the node but by the webserver which looks at node.conf. |