2017-06-16 13:05:52 +00:00
|
|
|
.. highlight:: kotlin
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<script type="text/javascript" src="_static/jquery.js"></script>
|
|
|
|
<script type="text/javascript" src="_static/codesets.js"></script>
|
|
|
|
|
|
|
|
Writing the state
|
|
|
|
=================
|
|
|
|
|
|
|
|
In Corda, shared facts on the ledger are represented as states. Our first task will be to define a new state type to
|
|
|
|
represent an IOU.
|
|
|
|
|
|
|
|
The ContractState interface
|
|
|
|
---------------------------
|
2017-11-16 15:31:52 +00:00
|
|
|
A Corda state is any instance of a class that implements the ``ContractState`` interface. The ``ContractState``
|
|
|
|
interface is defined as follows:
|
2017-06-16 13:05:52 +00:00
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
|
|
|
.. code-block:: kotlin
|
|
|
|
|
|
|
|
interface ContractState {
|
|
|
|
// The list of entities considered to have a stake in this state.
|
|
|
|
val participants: List<AbstractParty>
|
|
|
|
}
|
|
|
|
|
|
|
|
The first thing you'll probably notice about this interface declaration is that its not written in Java or another
|
|
|
|
common language. The core Corda platform, including the interface declaration above, is entirely written in Kotlin.
|
|
|
|
|
|
|
|
Learning some Kotlin will be very useful for understanding how Corda works internally, and usually only takes an
|
|
|
|
experienced Java developer a day or so to pick up. However, learning Kotlin isn't essential. Because Kotlin code
|
|
|
|
compiles down to JVM bytecode, CorDapps written in other JVM languages can interoperate with Corda.
|
|
|
|
|
|
|
|
If you do want to dive into Kotlin, there's an official
|
|
|
|
`getting started guide <https://kotlinlang.org/docs/tutorials/>`_, and a series of
|
|
|
|
`Kotlin Koans <https://kotlinlang.org/docs/tutorials/koans.html>`_.
|
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
We can see that the ``ContractState`` interface has a single field, ``participants``. ``participants`` is a list of the
|
|
|
|
entities for which this state is relevant.
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-10-02 08:08:59 +00:00
|
|
|
Beyond this, our state is free to define any fields, methods, helpers or inner classes it requires to accurately
|
2017-11-16 15:31:52 +00:00
|
|
|
represent a given type of shared fact on the ledger.
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
The first thing you'll probably notice about the declaration of ``ContractState`` is that its not written in Java
|
|
|
|
or another common language. The core Corda platform, including the interface declaration above, is entirely written
|
|
|
|
in Kotlin.
|
|
|
|
|
|
|
|
Learning some Kotlin will be very useful for understanding how Corda works internally, and usually only takes an
|
|
|
|
experienced Java developer a day or so to pick up. However, learning Kotlin isn't essential. Because Kotlin code
|
|
|
|
compiles to JVM bytecode, CorDapps written in other JVM languages such as Java can interoperate with Corda.
|
|
|
|
|
|
|
|
If you do want to dive into Kotlin, there's an official
|
|
|
|
`getting started guide <https://kotlinlang.org/docs/tutorials/>`_, and a series of
|
|
|
|
`Kotlin Koans <https://kotlinlang.org/docs/tutorials/koans.html>`_.
|
2017-06-16 13:05:52 +00:00
|
|
|
|
|
|
|
Modelling IOUs
|
|
|
|
--------------
|
|
|
|
How should we define the ``IOUState`` representing IOUs on the ledger? Beyond implementing the ``ContractState``
|
|
|
|
interface, our ``IOUState`` will also need properties to track the relevant features of the IOU:
|
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
* The value of the IOU
|
2017-07-07 11:06:28 +00:00
|
|
|
* The lender of the IOU
|
|
|
|
* The borrower of the IOU
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
There are many more fields you could include, such as the IOU's currency, but let's ignore those for now. Adding them
|
|
|
|
later is often as simple as adding an additional property to your class definition.
|
2017-06-16 13:05:52 +00:00
|
|
|
|
|
|
|
Defining IOUState
|
|
|
|
-----------------
|
2017-12-13 16:22:40 +00:00
|
|
|
Let's get started by opening ``TemplateState.java`` (for Java) or ``StatesAndContracts.kt`` (for Kotlin) and updating
|
2017-11-16 15:31:52 +00:00
|
|
|
``TemplateState`` to define an ``IOUState``:
|
2017-06-16 13:05:52 +00:00
|
|
|
|
|
|
|
.. container:: codeset
|
|
|
|
|
2017-10-16 13:39:28 +00:00
|
|
|
.. literalinclude:: example-code/src/main/kotlin/net/corda/docs/tutorial/helloworld/state.kt
|
|
|
|
:language: kotlin
|
|
|
|
:start-after: DOCSTART 01
|
|
|
|
:end-before: DOCEND 01
|
|
|
|
|
|
|
|
.. literalinclude:: example-code/src/main/java/net/corda/docs/java/tutorial/helloworld/IOUState.java
|
|
|
|
:language: java
|
|
|
|
:start-after: DOCSTART 01
|
|
|
|
:end-before: DOCEND 01
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-08-16 07:36:00 +00:00
|
|
|
If you're following along in Java, you'll also need to rename ``TemplateState.java`` to ``IOUState.java``.
|
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
To define ``IOUState``, we've made the following changes:
|
|
|
|
|
|
|
|
* We've renamed the ``TemplateState`` class to ``IOUState``
|
|
|
|
* We've added properties for ``value``, ``lender`` and ``borrower``, along with the required getters and setters in
|
|
|
|
Java:
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
* ``value`` is of type ``int`` (in Java)/``Int`` (in Kotlin)
|
|
|
|
* ``lender`` and ``borrower`` are of type ``Party``
|
2017-07-07 11:06:28 +00:00
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
* ``Party`` is a built-in Corda type that represents an entity on the network
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-07-07 11:06:28 +00:00
|
|
|
* We've overridden ``participants`` to return a list of the ``lender`` and ``borrower``
|
2017-06-16 13:05:52 +00:00
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
* ``participants`` is a list of all the parties who should be notified of the creation or consumption of this state
|
|
|
|
|
|
|
|
The IOUs that we issue onto a ledger will simply be instances of this class.
|
2017-06-16 13:05:52 +00:00
|
|
|
|
|
|
|
Progress so far
|
|
|
|
---------------
|
2017-11-16 15:31:52 +00:00
|
|
|
We've defined an ``IOUState`` that can be used to represent IOUs as shared facts on a ledger. As we've seen, states in
|
|
|
|
Corda are simply classes that implement the ``ContractState`` interface. They can have any additional properties and
|
2017-06-16 13:05:52 +00:00
|
|
|
methods you like.
|
|
|
|
|
2017-11-16 15:31:52 +00:00
|
|
|
All that's left to do is write the ``IOUFlow`` that will allow a node to orchestrate the creation of a new ``IOUState``
|
|
|
|
on the ledger, while only sharing information on a need-to-know basis.
|
|
|
|
|
|
|
|
What about the contract?
|
|
|
|
------------------------
|
|
|
|
If you've read the white paper or Key Concepts section, you'll know that each state has an associated contract that
|
|
|
|
imposes invariants on how the state evolves over time. Including a contract isn't crucial for our first CorDapp, so
|
|
|
|
we'll just use the empty ``TemplateContract`` and ``TemplateContract.Commands.Action`` command defined by the template
|
|
|
|
for now. In the next tutorial, we'll implement our own contract and command.
|