Hello World State

Author: Accord Project

helloworldstate@0.13.1 Clause ^0.20.10 54cf344a57a72a769e68239ea25112f312b639c5fb4494605abe5a971b36db22

This is the stateful Hello World of Accord Project Templates. Executing the clause will simply echo back the text that occurs after the string `Hello` prepended to text that is passed in the request along with the number of times the clause has been called.

Download Archive Download Compiled Archive Open in Template Studio Open in VSCode Web

Hello World State

This is the stateful Hello World of Accord Project Templates. Executing the clause will simply echo back the text that occurs after the string Hello prepended to text that is passed in the request along with the number of times the clause has been called.

Template Text

Name of the person to greet: "Fred Blogs". Thank you!

Name of the person to greet: "Fred Blogs".
Thank you!
Name of the person to greet: {{name}}.
Thank you!
{
    "$class": "org.accordproject.helloworldstate.HelloWorldClause",
    "clauseId": "bca636dd-8482-48ab-b0f6-8e53fcc4475c",
    "name": "Fred Blogs"
}

Template Model

namespace org.accordproject.helloworldstate

import org.accordproject.cicero.contract.* from https://models.accordproject.org/cicero/contract.cto
import org.accordproject.cicero.runtime.* from https://models.accordproject.org/cicero/runtime.cto

transaction MyRequest extends Request {
  o String input
}

transaction MyResponse extends Response {
  o String output
}

asset HelloWorldState extends AccordContractState {
  o Double counter
}

/**
 * The template model
 */
asset HelloWorldClause extends AccordClause {
  /**
   * The name for the clause
   */
  o String name
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON
org.accordproject.helloworldstate.HelloWorldState
{
    "$class": "org.accordproject.helloworldstate.HelloWorldState",
    "counter": 235.879,
    "stateId": "d78ff3a2-c07a-11ea-ad77-8b5ce7c057ac"
}

Request Types

Type Sample JSON
org.accordproject.helloworldstate.MyRequest
{
    "$class": "org.accordproject.helloworldstate.MyRequest",
    "input": "Ea officia aliqua do.",
    "transactionId": "d78ff3a0-c07a-11ea-ad77-8b5ce7c057ac",
    "timestamp": "2020-07-07T18:54:02.330+01:00"
}

Response Types

Type Sample JSON
org.accordproject.helloworldstate.MyResponse
{
    "$class": "org.accordproject.helloworldstate.MyResponse",
    "output": "Amet proident.",
    "transactionId": "d78ff3a1-c07a-11ea-ad77-8b5ce7c057ac",
    "timestamp": "2020-07-07T18:54:02.330+01:00"
}

Events Types

Type Sample JSON
org.accordproject.base.Event
{
    "abstract": "this is an abstract type"
}

Technical Integration

Please refer to the Cicero documentation for details and examples of how to integrate a call to a Cicero template into your application.

View the Latest code for this template on GitHub.