CORDA-2434: CordaRPCClient now only has c'tors rather a mix of c'tors and factory methods (#4569)

This commit is contained in:
Shams Asari
2019-01-14 16:07:56 +00:00
committed by GitHub
parent 5a72525d7d
commit 24a7821dce
9 changed files with 44 additions and 74 deletions

View File

@ -440,8 +440,6 @@ Wire security
``CordaRPCClient`` has an optional constructor parameter of type ``ClientRpcSslOptions``, defaulted to ``null``, which allows
communication with the node using SSL. Default ``null`` value means no SSL used in the context of RPC.
To use this feature, the ``CordaRPCClient`` object provides a static factory method ``createWithSsl``.
In order for this to work, the client needs to provide a truststore containing a certificate received from the node admin.
(The Node does not expect the RPC client to present a certificate, as the client already authenticates using the mechanism described above.)