Package-level declarations

Types

Link copied to clipboard
@DoNotImplement
interface JsonMarshallingService : MarshallingService

JsonMarshallingService marshalls to and from JSON using the registered JSON mapper.

Link copied to clipboard
@DoNotImplement
interface MarshallingService

MarshallingService is an abstract interface for marshalling to and from formatted string data. Corda provides specialized implementations of the marshalling services for converting data in different string formats.

Functions

Link copied to clipboard
inline fun <T> MarshallingService.parse(input: String): T

Parse input strings to strongly typed objects.

Link copied to clipboard
inline fun <T> MarshallingService.parseList(input: String): List<T>

Deserializes the input into a list of instances of T.