2017-07-05 11:16:47 +00:00
|
|
|
.. highlight:: kotlin
|
|
|
|
|
2017-10-13 09:36:25 +00:00
|
|
|
Writing a custom notary service (experimental)
|
|
|
|
==============================================
|
2017-07-05 11:16:47 +00:00
|
|
|
|
2018-03-06 12:22:09 +00:00
|
|
|
.. warning:: Customising a notary service is still an experimental feature and not recommended for most use-cases. The APIs
|
|
|
|
for writing a custom notary may change in the future. Additionally, customising Raft or BFT notaries is not yet
|
|
|
|
fully supported. If you want to write your own Raft notary you will have to implement a custom database connector
|
|
|
|
(or use a separate database for the notary), and use a custom configuration file.
|
2017-07-05 11:16:47 +00:00
|
|
|
|
|
|
|
Similarly to writing an oracle service, the first step is to create a service class in your CorDapp and annotate it
|
2017-10-13 09:36:25 +00:00
|
|
|
with ``@CordaService``. The Corda node scans for any class with this annotation and initialises them. The custom notary
|
|
|
|
service class should provide a constructor with two parameters of types ``AppServiceHub`` and ``PublicKey``.
|
2017-07-05 11:16:47 +00:00
|
|
|
|
2017-10-13 09:36:25 +00:00
|
|
|
.. literalinclude:: ../../samples/notary-demo/src/main/kotlin/net/corda/notarydemo/MyCustomNotaryService.kt
|
2017-07-05 11:16:47 +00:00
|
|
|
:language: kotlin
|
|
|
|
:start-after: START 1
|
|
|
|
:end-before: END 1
|
|
|
|
|
|
|
|
The next step is to write a notary service flow. You are free to copy and modify the existing built-in flows such
|
|
|
|
as ``ValidatingNotaryFlow``, ``NonValidatingNotaryFlow``, or implement your own from scratch (following the
|
|
|
|
``NotaryFlow.Service`` template). Below is an example of a custom flow for a *validating* notary service:
|
|
|
|
|
2017-10-13 09:36:25 +00:00
|
|
|
.. literalinclude:: ../../samples/notary-demo/src/main/kotlin/net/corda/notarydemo/MyCustomNotaryService.kt
|
2017-07-05 11:16:47 +00:00
|
|
|
:language: kotlin
|
|
|
|
:start-after: START 2
|
|
|
|
:end-before: END 2
|
2017-10-13 09:36:25 +00:00
|
|
|
|
|
|
|
To enable the service, add the following to the node configuration:
|
|
|
|
|
|
|
|
.. parsed-literal::
|
|
|
|
|
|
|
|
notary : {
|
|
|
|
validating : true # Set to false if your service is non-validating
|
|
|
|
custom : true
|
|
|
|
}
|