From f65632f7d84bd43ebfc1b59ccb47905dca04382c Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Tue, 11 Oct 2016 10:53:53 +0100 Subject: [PATCH] Polish --- .../src/reference/asciidoc/samples/.gitignore | 1 + docs/src/reference/asciidoc/samples/data.json | 57 ------------------- 2 files changed, 1 insertion(+), 57 deletions(-) delete mode 100644 docs/src/reference/asciidoc/samples/data.json diff --git a/docs/src/reference/asciidoc/samples/.gitignore b/docs/src/reference/asciidoc/samples/.gitignore index 6bf63602..733f6fc3 100644 --- a/docs/src/reference/asciidoc/samples/.gitignore +++ b/docs/src/reference/asciidoc/samples/.gitignore @@ -1,2 +1,3 @@ *.java +*.json diff --git a/docs/src/reference/asciidoc/samples/data.json b/docs/src/reference/asciidoc/samples/data.json deleted file mode 100644 index b0aebabe..00000000 --- a/docs/src/reference/asciidoc/samples/data.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "@id": "1", - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryState", - "initial": true, - "state": "S1", - "exitActions": [ - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryAction", - "spel": "T(System).out.println('hello exit S1')" - } - ] - }, - { - "@id": "2", - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryState", - "initial": false, - "state": "S2", - "entryActions": [ - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryAction", - "spel": "T(System).out.println('hello entry S2')" - } - ] - }, - { - "@id": "3", - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryState", - "initial": false, - "state": "S3", - "stateActions": [ - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryAction", - "spel": "T(System).out.println('hello state S3')" - } - ] - }, - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryTransition", - "source": "1", - "target": "2", - "event": "E1", - "kind": "EXTERNAL" - }, - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryTransition", - "source": "2", - "target": "3", - "event": "E2", - "actions": [ - { - "_class": "org.springframework.statemachine.data.jpa.JpaRepositoryAction", - "spel": "T(System).out.println('hello')" - } - ] - } -]