From 233abcaf9a90bcbf7c79155a7087ec99a28abd4d Mon Sep 17 00:00:00 2001 From: bpaunescu Date: Tue, 15 Oct 2019 08:57:42 +0100 Subject: [PATCH] CORDA-3318: fixed config property names in docs (#5589) * CORDA-3318: fixed config property names in docs * CORDA-3318: typo --- docs/source/network-map.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/network-map.rst b/docs/source/network-map.rst index cd2340626c..d8be8e3c00 100644 --- a/docs/source/network-map.rst +++ b/docs/source/network-map.rst @@ -195,20 +195,20 @@ parameters will be accepted without user input. The following parameters with th :start-after: DOCSTART 1 :end-before: DOCEND 1 -This behaviour can be turned off by setting the optional node configuration property ``NetworkParameterAcceptanceSettings.autoAcceptEnabled`` +This behaviour can be turned off by setting the optional node configuration property ``networkParameterAcceptanceSettings.autoAcceptEnabled`` to ``false``. For example: .. sourcecode:: guess ... - NetworkParameterAcceptanceSettings { + networkParameterAcceptanceSettings { autoAcceptEnabled = false } ... It is also possible to switch off this behaviour at a more granular parameter level. This can be achieved by specifying the set of ``@AutoAcceptable`` parameters that should not be auto-acceptable in the optional -``NetworkParameterAcceptanceSettings.excludedAutoAcceptableParameters`` node configuration property. +``networkParameterAcceptanceSettings.excludedAutoAcceptableParameters`` node configuration property. For example, auto-acceptance can be switched off for any updates that change the ``packageOwnership`` map by adding the following to the node configuration: @@ -216,7 +216,7 @@ node configuration: .. sourcecode:: guess ... - NetworkParameterAcceptanceSettings { + networkParameterAcceptanceSettings { excludedAutoAcceptableParameters: ["packageOwnership"] } ...