Revert "Document the Teller API"
diff --git a/service/build.gradle b/service/build.gradle
index 6ea848a..9a8f00c 100644
--- a/service/build.gradle
+++ b/service/build.gradle
@@ -26,7 +26,6 @@
 
     dependencies {
         classpath ("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
-        classpath("org.asciidoctor:asciidoctor-gradle-plugin:1.5.3")
     }
 }
 
@@ -37,7 +36,6 @@
 
 apply from: '../shared.gradle'
 
-apply plugin: 'org.asciidoctor.convert'
 apply plugin: 'spring-boot'
 
 springBoot {
@@ -66,24 +64,6 @@
             [group: 'org.apache.fineract.cn', name: 'crypto', version: versions.frameworkcrypto],
             [group: 'org.hibernate', name: 'hibernate-validator', version: versions.validator]
     )
-    testCompile(
-            [group: 'org.apache.fineract.cn.teller', name: 'api', version: project.version],
-            [group: 'org.apache.fineract.cn.anubis', name: 'test', version: versions.frameworkanubis],
-            [group: 'org.apache.fineract.cn', name: 'api', version: versions.frameworkapi],
-            [group: 'org.apache.fineract.cn', name: 'test', version: versions.frameworktest],
-            [group: 'org.apache.fineract.cn', name: 'lang', version: versions.frameworklang],
-            [group: 'org.springframework.boot', name: 'spring-boot-starter-test'],
-            [group: 'org.springframework.restdocs', name: 'spring-restdocs-mockmvc'],
-            [group: 'junit', name: 'junit', version: '4.12']
-    )
-}
-
-asciidoctor {
-    sourceDir 'src/doc/asciidoc/'
-    outputDir 'src/doc/html5'
-    options backend: "html", doctype: "book"
-    attributes "source-highlighter": "highlightjs", \
-                'snippets': file('src/doc/generated-snippets/')
 }
 
 publishToMavenLocal.dependsOn bootRepackage
diff --git a/service/src/doc/asciidoc/api-docs.adoc b/service/src/doc/asciidoc/api-docs.adoc
deleted file mode 100644
index 9e33b1e..0000000
--- a/service/src/doc/asciidoc/api-docs.adoc
+++ /dev/null
@@ -1,244 +0,0 @@
-== Apache Fineract CN Teller Management API Documentation ==
-
-== Tellers ==
-
-==== Create A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-create-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-create-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-create-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-create-teller/httpie-request.adoc[]
-
-==== Create Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-create-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-create-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-create-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-create-teller/httpie-request.adoc[]
-
-==== Find A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-find-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-find-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-find-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-find-teller/httpie-request.adoc[]
-
-==== Fetch A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-fetch-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-fetch-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-fetch-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-fetch-teller/httpie-request.adoc[]
-
-==== Open A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-open-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-open-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-open-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-open-teller/httpie-request.adoc[]
-
-==== Close A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-close-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-close-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-close-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-close-teller/httpie-request.adoc[]
-
-==== Update A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-update-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-update-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-update-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-update-teller/httpie-request.adoc[]
-
-==== Delete A Teller ====
-
-.curl-request
-include::{snippets}/test-teller-management/should-delete-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-teller-management/should-delete-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-teller-management/should-delete-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-teller-management/should-delete-teller/httpie-request.adoc[]
-
-== Teller Operations ==
-
-==== Unlock Drawer ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-unlock/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-unlock/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-unlock/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-unlock/httpie-request.adoc[]
-
-==== Open Account ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-open-account/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-open-account/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-open-account/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-open-account/httpie-request.adoc[]
-
-==== Deposit ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-deposit/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-deposit/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-deposit/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-deposit/httpie-request.adoc[]
-
-==== Withdraw ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-withdraw/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-withdraw/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-withdraw/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-withdraw/httpie-request.adoc[]
-
-==== Transfer ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-transfer-account-to-account/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-transfer-account-to-account/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-transfer-account-to-account/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-transfer-account-to-account/httpie-request.adoc[]
-
-==== Process Cheque ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-process-cheque/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-process-cheque/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-process-cheque/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-process-cheque/httpie-request.adoc[]
-
-==== Process Repayment ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-process-repayment/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-process-repayment/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-process-repayment/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-process-repayment/httpie-request.adoc[]
-
-==== Close Account ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-close-account/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-close-account/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-close-account/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-close-account/httpie-request.adoc[]
-
-==== Pause Teller ====
-
-.curl-request
-include::{snippets}/test-operation-management/should-pause-teller/curl-request.adoc[]
-
-.http-request
-include::{snippets}/test-operation-management/should-pause-teller/http-request.adoc[]
-
-.http-response
-include::{snippets}/test-operation-management/should-pause-teller/http-response.adoc[]
-
-.httpie-request
-include::{snippets}/test-operation-management/should-pause-teller/httpie-request.adoc[]
-
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-close-account/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-close-account/curl-request.adoc
deleted file mode 100644
index 87bb889..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-close-account/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-request.adoc
deleted file mode 100644
index 59b6ba6..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 39
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-close-account/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-close-account/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-close-account/httpie-request.adoc
deleted file mode 100644
index 1ed09f7..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-close-account/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-deposit/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-deposit/curl-request.adoc
deleted file mode 100644
index 0638f9e..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-deposit/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-request.adoc
deleted file mode 100644
index 23265b8..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 42
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-deposit/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-deposit/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-deposit/httpie-request.adoc
deleted file mode 100644
index e98da26..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-deposit/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-open-account/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-open-account/curl-request.adoc
deleted file mode 100644
index 2458774..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-open-account/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-request.adoc
deleted file mode 100644
index 6db09ca..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 37
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-open-account/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-open-account/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-open-account/httpie-request.adoc
deleted file mode 100644
index 3ba4826..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-open-account/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/curl-request.adoc
deleted file mode 100644
index 7c7d9d7..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-request.adoc
deleted file mode 100644
index 01595ae..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 39
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/httpie-request.adoc
deleted file mode 100644
index a6a8c1b..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-pause-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/curl-request.adoc
deleted file mode 100644
index 4df13e1..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-request.adoc
deleted file mode 100644
index c141dd0..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 49
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/httpie-request.adoc
deleted file mode 100644
index 561d9c1..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-cheque/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/curl-request.adoc
deleted file mode 100644
index 142ae31..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-request.adoc
deleted file mode 100644
index 846fffa..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 50
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/httpie-request.adoc
deleted file mode 100644
index 47ec399..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-process-repayment/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/curl-request.adoc
deleted file mode 100644
index 4b249fc..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-request.adoc
deleted file mode 100644
index 9d2ad46..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 44
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/httpie-request.adoc
deleted file mode 100644
index dda1224..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-transfer-account-to-account/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-unlock/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-unlock/curl-request.adoc
deleted file mode 100644
index 864ef5e..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-unlock/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-request.adoc
deleted file mode 100644
index 56d78e3..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 32
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-unlock/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-unlock/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-unlock/httpie-request.adoc
deleted file mode 100644
index d984a87..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-unlock/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/' 'Accept:application/json' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/curl-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-withdraw/curl-request.adoc
deleted file mode 100644
index a9f9e85..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-request.adoc
deleted file mode 100644
index a0b5ae2..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 42
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-response.adoc b/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/httpie-request.adoc b/service/src/doc/generated-snippets/test-operation-management/should-withdraw/httpie-request.adoc
deleted file mode 100644
index 7cda13c..0000000
--- a/service/src/doc/generated-snippets/test-operation-management/should-withdraw/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-close-teller/curl-request.adoc
deleted file mode 100644
index 7fbe426..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-request.adoc
deleted file mode 100644
index a241b89..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-close-teller/httpie-request.adoc
deleted file mode 100644
index 7ad59ec..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-close-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj' | http POST 'http://localhost:8080/teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-create-teller/curl-request.adoc
deleted file mode 100644
index b6ace77..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'RBgRBGh479OLBRd86U30jAGrRYp30JlY'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-request.adoc
deleted file mode 100644
index ecf28d8..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-RBgRBGh479OLBRd86U30jAGrRYp30JlY
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-create-teller/httpie-request.adoc
deleted file mode 100644
index 3718098..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-create-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'RBgRBGh479OLBRd86U30jAGrRYp30JlY' | http POST 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/curl-request.adoc
deleted file mode 100644
index bdc0d70..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z' -i -X DELETE -H 'Accept: */*' -H 'Content-Type: application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-request.adoc
deleted file mode 100644
index e5354da..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-request.adoc
+++ /dev/null
@@ -1,8 +0,0 @@
-[source,http,options="nowrap"]
-----
-DELETE /teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z HTTP/1.1
-Accept: */*
-Content-Type: application/json
-Host: localhost:8080
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/httpie-request.adoc
deleted file mode 100644
index f8d1a70..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-delete-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ http DELETE 'http://localhost:8080/teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z' 'Accept:*/*' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/curl-request.adoc
deleted file mode 100644
index ebc83ad..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/' -i -H 'Accept: */*' -H 'Content-Type: application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-request.adoc
deleted file mode 100644
index 14f3733..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-request.adoc
+++ /dev/null
@@ -1,8 +0,0 @@
-[source,http,options="nowrap"]
-----
-GET /teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/ HTTP/1.1
-Accept: */*
-Content-Type: application/json
-Host: localhost:8080
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/httpie-request.adoc
deleted file mode 100644
index 1b59cb4..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-fetch-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ http GET 'http://localhost:8080/teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/' 'Accept:*/*' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-find-teller/curl-request.adoc
deleted file mode 100644
index 3bbee4a..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO' -i -H 'Accept: */*'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-request.adoc
deleted file mode 100644
index 8a318d9..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-request.adoc
+++ /dev/null
@@ -1,7 +0,0 @@
-[source,http,options="nowrap"]
-----
-GET /teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO HTTP/1.1
-Accept: */*
-Host: localhost:8080
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-find-teller/httpie-request.adoc
deleted file mode 100644
index 24bee74..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-find-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ http GET 'http://localhost:8080/teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO' 'Accept:*/*'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-open-teller/curl-request.adoc
deleted file mode 100644
index ac8a07d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-request.adoc
deleted file mode 100644
index 3a85c14..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-POST /teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-open-teller/httpie-request.adoc
deleted file mode 100644
index 2baada6..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-open-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4' | http POST 'http://localhost:8080/teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/' 'Content-Type:application/json' 'Accept:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/curl-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-update-teller/curl-request.adoc
deleted file mode 100644
index e26b744..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/curl-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ curl 'http://localhost:8080/teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' -i -X PUT -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH'
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-request.adoc
deleted file mode 100644
index 8f545f6..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-request.adoc
+++ /dev/null
@@ -1,10 +0,0 @@
-[source,http,options="nowrap"]
-----
-PUT /teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 32
-
-Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-response.adoc b/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-response.adoc
deleted file mode 100644
index f3b256d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/http-response.adoc
+++ /dev/null
@@ -1,5 +0,0 @@
-[source,http,options="nowrap"]
-----
-HTTP/1.1 404 Not Found
-
-----
\ No newline at end of file
diff --git a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/httpie-request.adoc b/service/src/doc/generated-snippets/test-teller-management/should-update-teller/httpie-request.adoc
deleted file mode 100644
index e71a39d..0000000
--- a/service/src/doc/generated-snippets/test-teller-management/should-update-teller/httpie-request.adoc
+++ /dev/null
@@ -1,4 +0,0 @@
-[source,bash]
-----
-$ echo 'Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' | http PUT 'http://localhost:8080/teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' 'Accept:application/json' 'Content-Type:application/json'
-----
\ No newline at end of file
diff --git a/service/src/doc/html5/html5/api-docs.html b/service/src/doc/html5/html5/api-docs.html
deleted file mode 100644
index aeb3c60..0000000
--- a/service/src/doc/html5/html5/api-docs.html
+++ /dev/null
@@ -1,1001 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="UTF-8">
-<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<meta name="generator" content="Asciidoctor 1.5.3">
-<title>Apache Fineract CN Teller Management API Documentation</title>
-<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700">
-<style>
-/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
-/* Remove comment around @import statement below when using as a custom stylesheet */
-/*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";*/
-article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
-audio,canvas,video{display:inline-block}
-audio:not([controls]){display:none;height:0}
-[hidden],template{display:none}
-script{display:none!important}
-html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
-body{margin:0}
-a{background:transparent}
-a:focus{outline:thin dotted}
-a:active,a:hover{outline:0}
-h1{font-size:2em;margin:.67em 0}
-abbr[title]{border-bottom:1px dotted}
-b,strong{font-weight:bold}
-dfn{font-style:italic}
-hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
-mark{background:#ff0;color:#000}
-code,kbd,pre,samp{font-family:monospace;font-size:1em}
-pre{white-space:pre-wrap}
-q{quotes:"\201C" "\201D" "\2018" "\2019"}
-small{font-size:80%}
-sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
-sup{top:-.5em}
-sub{bottom:-.25em}
-img{border:0}
-svg:not(:root){overflow:hidden}
-figure{margin:0}
-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
-legend{border:0;padding:0}
-button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}
-button,input{line-height:normal}
-button,select{text-transform:none}
-button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
-button[disabled],html input[disabled]{cursor:default}
-input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
-input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
-input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
-button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
-textarea{overflow:auto;vertical-align:top}
-table{border-collapse:collapse;border-spacing:0}
-*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
-html,body{font-size:100%}
-body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto Serif","DejaVu Serif",serif;font-weight:400;font-style:normal;line-height:1;position:relative;cursor:auto}
-a:hover{cursor:pointer}
-img,object,embed{max-width:100%;height:auto}
-object,embed{height:100%}
-img{-ms-interpolation-mode:bicubic}
-.left{float:left!important}
-.right{float:right!important}
-.text-left{text-align:left!important}
-.text-right{text-align:right!important}
-.text-center{text-align:center!important}
-.text-justify{text-align:justify!important}
-.hide{display:none}
-body{-webkit-font-smoothing:antialiased}
-img,object,svg{display:inline-block;vertical-align:middle}
-textarea{height:auto;min-height:50px}
-select{width:100%}
-.center{margin-left:auto;margin-right:auto}
-.spread{width:100%}
-p.lead,.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{font-size:1.21875em;line-height:1.6}
-.subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em}
-div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr}
-a{color:#2156a5;text-decoration:underline;line-height:inherit}
-a:hover,a:focus{color:#1d4b8f}
-a img{border:none}
-p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}
-p aside{font-size:.875em;line-height:1.35;font-style:italic}
-h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em}
-h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0}
-h1{font-size:2.125em}
-h2{font-size:1.6875em}
-h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em}
-h4,h5{font-size:1.125em}
-h6{font-size:1em}
-hr{border:solid #ddddd8;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0}
-em,i{font-style:italic;line-height:inherit}
-strong,b{font-weight:bold;line-height:inherit}
-small{font-size:60%;line-height:inherit}
-code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)}
-ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit}
-ul,ol,ul.no-bullet,ol.no-bullet{margin-left:1.5em}
-ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em}
-ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}
-ul.square{list-style-type:square}
-ul.circle{list-style-type:circle}
-ul.disc{list-style-type:disc}
-ul.no-bullet{list-style:none}
-ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0}
-dl dt{margin-bottom:.3125em;font-weight:bold}
-dl dd{margin-bottom:1.25em}
-abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help}
-abbr{text-transform:none}
-blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd}
-blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)}
-blockquote cite:before{content:"\2014 \0020"}
-blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)}
-blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)}
-@media only screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2}
-h1{font-size:2.75em}
-h2{font-size:2.3125em}
-h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em}
-h4{font-size:1.4375em}}
-table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede}
-table thead,table tfoot{background:#f7f8f7;font-weight:bold}
-table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left}
-table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)}
-table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7}
-table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
-body{tab-size:4}
-h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em}
-h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400}
-.clearfix:before,.clearfix:after,.float-group:before,.float-group:after{content:" ";display:table}
-.clearfix:after,.float-group:after{clear:both}
-*:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed}
-pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed}
-.keyseq{color:rgba(51,51,51,.8)}
-kbd{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;display:inline-block;color:rgba(0,0,0,.8);font-size:.65em;line-height:1.45;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:0 .15em;padding:.2em .5em;vertical-align:middle;position:relative;top:-.1em;white-space:nowrap}
-.keyseq kbd:first-child{margin-left:0}
-.keyseq kbd:last-child{margin-right:0}
-.menuseq,.menu{color:rgba(0,0,0,.8)}
-b.button:before,b.button:after{position:relative;top:-1px;font-weight:400}
-b.button:before{content:"[";padding:0 3px 0 2px}
-b.button:after{content:"]";padding:0 2px 0 3px}
-p a>code:hover{color:rgba(0,0,0,.9)}
-#header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em}
-#header:before,#header:after,#content:before,#content:after,#footnotes:before,#footnotes:after,#footer:before,#footer:after{content:" ";display:table}
-#header:after,#content:after,#footnotes:after,#footer:after{clear:both}
-#content{margin-top:1.25em}
-#content:before{content:none}
-#header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0}
-#header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #ddddd8}
-#header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #ddddd8;padding-bottom:8px}
-#header .details{border-bottom:1px solid #ddddd8;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap}
-#header .details span:first-child{margin-left:-.125em}
-#header .details span.email a{color:rgba(0,0,0,.85)}
-#header .details br{display:none}
-#header .details br+span:before{content:"\00a0\2013\00a0"}
-#header .details br+span.author:before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)}
-#header .details br+span#revremark:before{content:"\00a0|\00a0"}
-#header #revnumber{text-transform:capitalize}
-#header #revnumber:after{content:"\00a0"}
-#content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #ddddd8;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem}
-#toc{border-bottom:1px solid #efefed;padding-bottom:.5em}
-#toc>ul{margin-left:.125em}
-#toc ul.sectlevel0>li>a{font-style:italic}
-#toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0}
-#toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none}
-#toc li{line-height:1.3334;margin-top:.3334em}
-#toc a{text-decoration:none}
-#toc a:active{text-decoration:underline}
-#toctitle{color:#7a2518;font-size:1.2em}
-@media only screen and (min-width:768px){#toctitle{font-size:1.375em}
-body.toc2{padding-left:15em;padding-right:0}
-#toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #efefed;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto}
-#toc.toc2 #toctitle{margin-top:0;margin-bottom:.8rem;font-size:1.2em}
-#toc.toc2>ul{font-size:.9em;margin-bottom:0}
-#toc.toc2 ul ul{margin-left:0;padding-left:1em}
-#toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em}
-body.toc2.toc-right{padding-left:0;padding-right:15em}
-body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #efefed;left:auto;right:0}}
-@media only screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0}
-#toc.toc2{width:20em}
-#toc.toc2 #toctitle{font-size:1.375em}
-#toc.toc2>ul{font-size:.95em}
-#toc.toc2 ul ul{padding-left:1.25em}
-body.toc2.toc-right{padding-left:0;padding-right:20em}}
-#content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
-#content #toc>:first-child{margin-top:0}
-#content #toc>:last-child{margin-bottom:0}
-#footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em}
-#footer-text{color:rgba(255,255,255,.8);line-height:1.44}
-.sect1{padding-bottom:.625em}
-@media only screen and (min-width:768px){.sect1{padding-bottom:1.25em}}
-.sect1+.sect1{border-top:1px solid #efefed}
-#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400}
-#content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em}
-#content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible}
-#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none}
-#content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221}
-.audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em}
-.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic}
-table.tableblock>caption.title{white-space:nowrap;overflow:visible;max-width:0}
-.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{color:rgba(0,0,0,.85)}
-table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p{font-size:inherit}
-.admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%}
-.admonitionblock>table td.icon{text-align:center;width:80px}
-.admonitionblock>table td.icon img{max-width:none}
-.admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase}
-.admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #ddddd8;color:rgba(0,0,0,.6)}
-.admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0}
-.exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px}
-.exampleblock>.content>:first-child{margin-top:0}
-.exampleblock>.content>:last-child{margin-bottom:0}
-.sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
-.sidebarblock>:first-child{margin-top:0}
-.sidebarblock>:last-child{margin-bottom:0}
-.sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center}
-.exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0}
-.literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8}
-.sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1}
-.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;padding:1em;font-size:.8125em}
-.literalblock pre.nowrap,.literalblock pre[class].nowrap,.listingblock pre.nowrap,.listingblock pre[class].nowrap{overflow-x:auto;white-space:pre;word-wrap:normal}
-@media only screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}}
-@media only screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}}
-.literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)}
-.listingblock pre.highlightjs{padding:0}
-.listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px}
-.listingblock pre.prettyprint{border-width:0}
-.listingblock>.content{position:relative}
-.listingblock code[data-lang]:before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999}
-.listingblock:hover code[data-lang]:before{display:block}
-.listingblock.terminal pre .command:before{content:attr(data-prompt);padding-right:.5em;color:#999}
-.listingblock.terminal pre .command:not([data-prompt]):before{content:"$"}
-table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none}
-table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0;line-height:1.45}
-table.pyhltable td.code{padding-left:.75em;padding-right:0}
-pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #ddddd8}
-pre.pygments .lineno{display:inline-block;margin-right:.25em}
-table.pyhltable .linenodiv{background:none!important;padding-right:0!important}
-.quoteblock{margin:0 1em 1.25em 1.5em;display:table}
-.quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em}
-.quoteblock blockquote,.quoteblock blockquote p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify}
-.quoteblock blockquote{margin:0;padding:0;border:0}
-.quoteblock blockquote:before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)}
-.quoteblock blockquote>.paragraph:last-child p{margin-bottom:0}
-.quoteblock .attribution{margin-top:.5em;margin-right:.5ex;text-align:right}
-.quoteblock .quoteblock{margin-left:0;margin-right:0;padding:.5em 0;border-left:3px solid rgba(0,0,0,.6)}
-.quoteblock .quoteblock blockquote{padding:0 0 0 .75em}
-.quoteblock .quoteblock blockquote:before{display:none}
-.verseblock{margin:0 1em 1.25em 1em}
-.verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility}
-.verseblock pre strong{font-weight:400}
-.verseblock .attribution{margin-top:1.25rem;margin-left:.5ex}
-.quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic}
-.quoteblock .attribution br,.verseblock .attribution br{display:none}
-.quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.025em;color:rgba(0,0,0,.6)}
-.quoteblock.abstract{margin:0 0 1.25em 0;display:block}
-.quoteblock.abstract blockquote,.quoteblock.abstract blockquote p{text-align:left;word-spacing:0}
-.quoteblock.abstract blockquote:before,.quoteblock.abstract blockquote p:first-of-type:before{display:none}
-table.tableblock{max-width:100%;border-collapse:separate}
-table.tableblock td>.paragraph:last-child p>p:last-child,table.tableblock th>p:last-child,table.tableblock td>p:last-child{margin-bottom:0}
-table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
-table.grid-all th.tableblock,table.grid-all td.tableblock{border-width:0 1px 1px 0}
-table.grid-all tfoot>tr>th.tableblock,table.grid-all tfoot>tr>td.tableblock{border-width:1px 1px 0 0}
-table.grid-cols th.tableblock,table.grid-cols td.tableblock{border-width:0 1px 0 0}
-table.grid-all *>tr>.tableblock:last-child,table.grid-cols *>tr>.tableblock:last-child{border-right-width:0}
-table.grid-rows th.tableblock,table.grid-rows td.tableblock{border-width:0 0 1px 0}
-table.grid-all tbody>tr:last-child>th.tableblock,table.grid-all tbody>tr:last-child>td.tableblock,table.grid-all thead:last-child>tr>th.tableblock,table.grid-rows tbody>tr:last-child>th.tableblock,table.grid-rows tbody>tr:last-child>td.tableblock,table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0}
-table.grid-rows tfoot>tr>th.tableblock,table.grid-rows tfoot>tr>td.tableblock{border-width:1px 0 0 0}
-table.frame-all{border-width:1px}
-table.frame-sides{border-width:0 1px}
-table.frame-topbot{border-width:1px 0}
-th.halign-left,td.halign-left{text-align:left}
-th.halign-right,td.halign-right{text-align:right}
-th.halign-center,td.halign-center{text-align:center}
-th.valign-top,td.valign-top{vertical-align:top}
-th.valign-bottom,td.valign-bottom{vertical-align:bottom}
-th.valign-middle,td.valign-middle{vertical-align:middle}
-table thead th,table tfoot th{font-weight:bold}
-tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7}
-tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold}
-p.tableblock>code:only-child{background:none;padding:0}
-p.tableblock{font-size:1em}
-td>div.verse{white-space:pre}
-ol{margin-left:1.75em}
-ul li ol{margin-left:1.5em}
-dl dd{margin-left:1.125em}
-dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0}
-ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em}
-ul.unstyled,ol.unnumbered,ul.checklist,ul.none{list-style-type:none}
-ul.unstyled,ol.unnumbered,ul.checklist{margin-left:.625em}
-ul.checklist li>p:first-child>.fa-square-o:first-child,ul.checklist li>p:first-child>.fa-check-square-o:first-child{width:1em;font-size:.85em}
-ul.checklist li>p:first-child>input[type="checkbox"]:first-child{width:1em;position:relative;top:1px}
-ul.inline{margin:0 auto .625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden}
-ul.inline>li{list-style:none;float:left;margin-left:1.375em;display:block}
-ul.inline>li>*{display:block}
-.unstyled dl dt{font-weight:400;font-style:normal}
-ol.arabic{list-style-type:decimal}
-ol.decimal{list-style-type:decimal-leading-zero}
-ol.loweralpha{list-style-type:lower-alpha}
-ol.upperalpha{list-style-type:upper-alpha}
-ol.lowerroman{list-style-type:lower-roman}
-ol.upperroman{list-style-type:upper-roman}
-ol.lowergreek{list-style-type:lower-greek}
-.hdlist>table,.colist>table{border:0;background:none}
-.hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none}
-td.hdlist1,td.hdlist2{vertical-align:top;padding:0 .625em}
-td.hdlist1{font-weight:bold;padding-bottom:1.25em}
-.literalblock+.colist,.listingblock+.colist{margin-top:-.5em}
-.colist>table tr>td:first-of-type{padding:0 .75em;line-height:1}
-.colist>table tr>td:last-of-type{padding:.25em 0}
-.thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd}
-.imageblock.left,.imageblock[style*="float: left"]{margin:.25em .625em 1.25em 0}
-.imageblock.right,.imageblock[style*="float: right"]{margin:.25em 0 1.25em .625em}
-.imageblock>.title{margin-bottom:0}
-.imageblock.thumb,.imageblock.th{border-width:6px}
-.imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em}
-.image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0}
-.image.left{margin-right:.625em}
-.image.right{margin-left:.625em}
-a.image{text-decoration:none;display:inline-block}
-a.image object{pointer-events:none}
-sup.footnote,sup.footnoteref{font-size:.875em;position:static;vertical-align:super}
-sup.footnote a,sup.footnoteref a{text-decoration:none}
-sup.footnote a:active,sup.footnoteref a:active{text-decoration:underline}
-#footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em}
-#footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em 0;border-width:1px 0 0 0}
-#footnotes .footnote{padding:0 .375em 0 .225em;line-height:1.3334;font-size:.875em;margin-left:1.2em;text-indent:-1.05em;margin-bottom:.2em}
-#footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none}
-#footnotes .footnote:last-of-type{margin-bottom:0}
-#content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0}
-.gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0}
-.gist .file-data>table td.line-data{width:99%}
-div.unbreakable{page-break-inside:avoid}
-.big{font-size:larger}
-.small{font-size:smaller}
-.underline{text-decoration:underline}
-.overline{text-decoration:overline}
-.line-through{text-decoration:line-through}
-.aqua{color:#00bfbf}
-.aqua-background{background-color:#00fafa}
-.black{color:#000}
-.black-background{background-color:#000}
-.blue{color:#0000bf}
-.blue-background{background-color:#0000fa}
-.fuchsia{color:#bf00bf}
-.fuchsia-background{background-color:#fa00fa}
-.gray{color:#606060}
-.gray-background{background-color:#7d7d7d}
-.green{color:#006000}
-.green-background{background-color:#007d00}
-.lime{color:#00bf00}
-.lime-background{background-color:#00fa00}
-.maroon{color:#600000}
-.maroon-background{background-color:#7d0000}
-.navy{color:#000060}
-.navy-background{background-color:#00007d}
-.olive{color:#606000}
-.olive-background{background-color:#7d7d00}
-.purple{color:#600060}
-.purple-background{background-color:#7d007d}
-.red{color:#bf0000}
-.red-background{background-color:#fa0000}
-.silver{color:#909090}
-.silver-background{background-color:#bcbcbc}
-.teal{color:#006060}
-.teal-background{background-color:#007d7d}
-.white{color:#bfbfbf}
-.white-background{background-color:#fafafa}
-.yellow{color:#bfbf00}
-.yellow-background{background-color:#fafa00}
-span.icon>.fa{cursor:default}
-.admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default}
-.admonitionblock td.icon .icon-note:before{content:"\f05a";color:#19407c}
-.admonitionblock td.icon .icon-tip:before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111}
-.admonitionblock td.icon .icon-warning:before{content:"\f071";color:#bf6900}
-.admonitionblock td.icon .icon-caution:before{content:"\f06d";color:#bf3400}
-.admonitionblock td.icon .icon-important:before{content:"\f06a";color:#bf0000}
-.conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
-.conum[data-value] *{color:#fff!important}
-.conum[data-value]+b{display:none}
-.conum[data-value]:after{content:attr(data-value)}
-pre .conum[data-value]{position:relative;top:-.125em}
-b.conum *{color:inherit!important}
-.conum:not([data-value]):empty{display:none}
-dt,th.tableblock,td.content,div.footnote{text-rendering:optimizeLegibility}
-h1,h2,p,td.content,span.alt{letter-spacing:-.01em}
-p strong,td.content strong,div.footnote strong{letter-spacing:-.005em}
-p,blockquote,dt,td.content,span.alt{font-size:1.0625rem}
-p{margin-bottom:1.25rem}
-.sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em}
-.exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc}
-.print-only{display:none!important}
-@media print{@page{margin:1.25cm .75cm}
-*{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}
-a{color:inherit!important;text-decoration:underline!important}
-a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important}
-a[href^="http:"]:not(.bare):after,a[href^="https:"]:not(.bare):after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em}
-abbr[title]:after{content:" (" attr(title) ")"}
-pre,blockquote,tr,img,object,svg{page-break-inside:avoid}
-thead{display:table-header-group}
-svg{max-width:100%}
-p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3}
-h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid}
-#toc,.sidebarblock,.exampleblock>.content{background:none!important}
-#toc{border-bottom:1px solid #ddddd8!important;padding-bottom:0!important}
-.sect1{padding-bottom:0!important}
-.sect1+.sect1{border:0!important}
-#header>h1:first-child{margin-top:1.25rem}
-body.book #header{text-align:center}
-body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em 0}
-body.book #header .details{border:0!important;display:block;padding:0!important}
-body.book #header .details span:first-child{margin-left:0!important}
-body.book #header .details br{display:block}
-body.book #header .details br+span:before{content:none!important}
-body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important}
-body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always}
-.listingblock code[data-lang]:before{display:block}
-#footer{background:none!important;padding:0 .9375em}
-#footer-text{color:rgba(0,0,0,.6)!important;font-size:.9em}
-.hide-on-print{display:none!important}
-.print-only{display:block!important}
-.hide-for-print{display:none!important}
-.show-for-print{display:inherit!important}}
-</style>
-</head>
-<body class="book">
-<div id="header">
-</div>
-<div id="content">
-<div class="sect1">
-<h2 id="_apache_fineract_cn_teller_management_api_documentation">Apache Fineract CN Teller Management API Documentation</h2>
-<div class="sectionbody">
-
-</div>
-</div>
-<div class="sect1">
-<h2 id="_tellers">Tellers</h2>
-<div class="sectionbody">
-<div class="sect3">
-<h4 id="_create_a_teller">Create A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'RBgRBGh479OLBRd86U30jAGrRYp30JlY'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-RBgRBGh479OLBRd86U30jAGrRYp30JlY</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'RBgRBGh479OLBRd86U30jAGrRYp30JlY' | http POST 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_create_teller">Create Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'RBgRBGh479OLBRd86U30jAGrRYp30JlY'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-RBgRBGh479OLBRd86U30jAGrRYp30JlY</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'RBgRBGh479OLBRd86U30jAGrRYp30JlY' | http POST 'http://localhost:8080/teller/v1/offices/RXjcsFQvNiMOHunNwnTQvmPNhCbdbmAR/teller/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_find_a_teller">Find A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO' -i -H 'Accept: */*'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">GET /teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO HTTP/1.1
-Accept: */*
-Host: localhost:8080</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ http GET 'http://localhost:8080/teller/v1/offices/LxNBXQEgxSsTXrJYZmEgnUxbBZaetbOY/teller/l7Xds0ujYRN3uEVA3kryDd54scRqqkDO' 'Accept:*/*'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_fetch_a_teller">Fetch A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/' -i -H 'Accept: */*' -H 'Content-Type: application/json'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">GET /teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/ HTTP/1.1
-Accept: */*
-Content-Type: application/json
-Host: localhost:8080</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ http GET 'http://localhost:8080/teller/v1/offices/LFFvhNRsoKmwTvsaGVOTrCLUeiVQXKGX/teller/' 'Accept:*/*' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_open_a_teller">Open A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4' | http POST 'http://localhost:8080/teller/v1/offices/VWhJfnWRWpyhnoiLBMBaRlEucUUvpXMZ/teller/nD6zhKriVMaz82QsGvmBxU4Ybl5uBVk4/commands/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_close_a_teller">Close A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 32
-
-Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj' | http POST 'http://localhost:8080/teller/v1/offices/HpKVRmQraeQuvmBOSCjAGIALykNDoJHp/teller/Xo8Yeh26VpMDPjPXTdGqWrXlRrU7pYMj/commands/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_update_a_teller">Update A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' -i -X PUT -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">PUT /teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 32
-
-Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' | http PUT 'http://localhost:8080/teller/v1/offices/AoFoonLfESxeyEnREnlDaacOsjKhekly/teller/Vxi7lJmBS1kkkV8YhQbhkLEsKQGEGmIH' 'Accept:application/json' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_delete_a_teller">Delete A Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z' -i -X DELETE -H 'Accept: */*' -H 'Content-Type: application/json'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">DELETE /teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z HTTP/1.1
-Accept: */*
-Content-Type: application/json
-Host: localhost:8080</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ http DELETE 'http://localhost:8080/teller/v1/offices/ddBmjFcGttOGfSeSaUidkssFNzxKfSvg/teller/f5PPDcAt5iZHuQAl8YFlZsbR0Trxj96Z' 'Accept:*/*' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_teller_operations">Teller Operations</h2>
-<div class="sectionbody">
-<div class="sect3">
-<h4 id="_unlock_drawer">Unlock Drawer</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 32
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/drawer/' 'Accept:application/json' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_open_account">Open Account</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 37
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Open' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_deposit">Deposit</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 42
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Deposited' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_withdraw">Withdraw</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 42
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Withdrawn' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_transfer">Transfer</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/ HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 44
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Transferred' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_process_cheque">Process Cheque</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 49
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Processed Cheque' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_process_repayment">Process Repayment</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null HTTP/1.1
-Content-Type: application/json
-Accept: application/json
-Host: localhost:8080
-Content-Length: 50
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Process Repayment' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/transactions/null' 'Content-Type:application/json' 'Accept:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_close_account">Close Account</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 39
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Closed' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_pause_teller">Pause Teller</h4>
-<div class="listingblock">
-<div class="title">curl-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' -i -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused'</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-request</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">POST /teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/ HTTP/1.1
-Accept: application/json
-Content-Type: application/json
-Host: localhost:8080
-Content-Length: 39
-
-sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">http-response</div>
-<div class="content">
-<pre class="highlightjs highlight nowrap"><code class="language-http" data-lang="http">HTTP/1.1 404 Not Found</code></pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="title">httpie-request</div>
-<div class="content">
-<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ echo 'sROdHiJEPhkxqDECxLbzVfq37C06mP35 Paused' | http POST 'http://localhost:8080/teller/v1/teller/sROdHiJEPhkxqDECxLbzVfq37C06mP35/' 'Accept:application/json' 'Content-Type:application/json'</code></pre>
-</div>
-</div>
-</div>
-</div>
-</div>
-</div>
-<div id="footer">
-<div id="footer-text">
-Last updated 2018-04-23 17:02:09 +01:00
-</div>
-</div>
-<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">
-<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js"></script>
-<script>hljs.initHighlighting()</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/AbstractTellerTest.java b/service/src/test/java/org/apache/fineract/cn/teller/AbstractTellerTest.java
deleted file mode 100644
index e50cdf0..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/AbstractTellerTest.java
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import org.apache.fineract.cn.anubis.test.v1.TenantApplicationSecurityEnvironmentTestRule;
-import org.apache.fineract.cn.api.context.AutoUserContext;
-import org.apache.fineract.cn.lang.ApplicationName;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.teller.api.v1.client.TellerManager;
-import org.apache.fineract.cn.teller.service.internal.service.helper.*;
-import org.apache.fineract.cn.test.fixture.TenantDataStoreContextTestRule;
-import org.apache.fineract.cn.test.listener.EnableEventRecording;
-import org.apache.fineract.cn.test.listener.EventRecorder;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.ClassRule;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Qualifier;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.boot.test.mock.mockito.MockBean;
-import org.springframework.cloud.netflix.feign.EnableFeignClients;
-import org.springframework.cloud.netflix.ribbon.RibbonClient;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.ComponentScan;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.Import;
-import org.springframework.test.context.junit4.SpringRunner;
-
-import java.security.interfaces.RSAPrivateKey;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest(
-    webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT,
-    classes = {AbstractTellerTest.TestConfiguration.class}
-)
-public class AbstractTellerTest extends SuiteTestEnvironment {
-
-  public static final String LOGGER_NAME = "test-logger";
-
-  @Configuration
-  @EnableEventRecording
-  @EnableFeignClients(basePackages = {"org.apache.fineract.cn.teller.api.v1.client"})
-  @RibbonClient(name = APP_NAME)
-  @Import({TellerConfiguration.class})
-  @ComponentScan("org.apache.fineract.cn.teller.listener")
-  public static class TestConfiguration {
-    public TestConfiguration() {
-      super();
-    }
-
-    @Bean(name = LOGGER_NAME)
-    public Logger logger() {
-      return LoggerFactory.getLogger(LOGGER_NAME);
-    }
-  }
-
-  static final String TEST_USER = "homer";
-
-  @ClassRule
-  public static TenantDataStoreContextTestRule tenantDataStoreContext = TenantDataStoreContextTestRule.forRandomTenantName(cassandraInitializer, mariaDBInitializer);
-
-  @Rule
-  public final TenantApplicationSecurityEnvironmentTestRule tenantApplicationSecurityEnvironment
-      = new TenantApplicationSecurityEnvironmentTestRule(testEnvironment, this::waitForInitialize);
-
-  private AutoUserContext userContext;
-
-  @Autowired
-  TellerManager testSubject;
-
-  @Autowired
-  EventRecorder eventRecorder;
-
-  @MockBean
-  OrganizationService organizationServiceSpy;
-
-  @MockBean
-  AccountingService accountingServiceSpy;
-
-  @MockBean
-  DepositAccountManagementService depositAccountManagementServiceSpy;
-
-  @MockBean
-  PortfolioService portfolioServiceSpy;
-
-  @MockBean
-  ChequeService chequeServiceSpy;
-
-  @Autowired
-  private ApplicationName applicationName;
-
-  @SuppressWarnings("WeakerAccess")
-  @Autowired
-  @Qualifier(LOGGER_NAME)
-  Logger logger;
-
-  @Before
-  public void prepTest() {
-    userContext = tenantApplicationSecurityEnvironment.createAutoUserContext(TEST_USER);
-    final RSAPrivateKey tenantPrivateKey = tenantApplicationSecurityEnvironment.getSystemSecurityEnvironment().tenantPrivateKey();
-    logger.info("tenantPrivateKey = {}", tenantPrivateKey);
-  }
-
-  @After
-  public void cleanTest() {
-    userContext.close();
-    eventRecorder.clear();
-  }
-
-  public boolean waitForInitialize() {
-    try {
-      final String version = this.applicationName.getVersionString();
-      this.logger.info("Waiting on initialize event for version: {}.", version);
-      return this.eventRecorder.wait(EventConstants.INITIALIZE, version);
-    } catch (final InterruptedException e) {
-      throw new IllegalStateException(e);
-    }
-  }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/SuiteTestEnvironment.java b/service/src/test/java/org/apache/fineract/cn/teller/SuiteTestEnvironment.java
deleted file mode 100644
index 60a8e4f..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/SuiteTestEnvironment.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import org.apache.fineract.cn.test.env.TestEnvironment;
-import org.apache.fineract.cn.test.fixture.cassandra.CassandraInitializer;
-import org.apache.fineract.cn.test.fixture.mariadb.MariaDBInitializer;
-import org.junit.ClassRule;
-import org.junit.rules.RuleChain;
-import org.junit.rules.RunExternalResourceOnce;
-import org.junit.rules.TestRule;
-
-/**
- * @author Myrle Krantz
- */
-public class SuiteTestEnvironment {
-  static final String APP_NAME = "teller-v1";
-  static final TestEnvironment testEnvironment = new TestEnvironment(APP_NAME);
-  static final CassandraInitializer cassandraInitializer = new CassandraInitializer();
-  static final MariaDBInitializer mariaDBInitializer = new MariaDBInitializer();
-
-  @ClassRule
-  public static TestRule orderClassRules = RuleChain
-      .outerRule(new RunExternalResourceOnce(testEnvironment))
-      .around(new RunExternalResourceOnce(cassandraInitializer))
-      .around(new RunExternalResourceOnce(mariaDBInitializer));
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/TestSuite.java b/service/src/test/java/org/apache/fineract/cn/teller/TestSuite.java
deleted file mode 100644
index 5a8e507..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/TestSuite.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-
-/**
- * @author Myrle Krantz
- */
-@RunWith(Suite.class)
-@Suite.SuiteClasses({
-    TestTellerManagement.class,
-    TestTellerOperation.class
-})
-public class TestSuite extends SuiteTestEnvironment {
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerBalance.java b/service/src/test/java/org/apache/fineract/cn/teller/TestTellerBalance.java
deleted file mode 100644
index 8449f94..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerBalance.java
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import com.google.common.collect.Lists;
-import org.apache.commons.lang3.RandomStringUtils;
-import org.apache.fineract.cn.accounting.api.v1.domain.Account;
-import org.apache.fineract.cn.accounting.api.v1.domain.AccountEntry;
-import org.apache.fineract.cn.accounting.api.v1.domain.AccountEntryPage;
-import org.apache.fineract.cn.lang.DateConverter;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.teller.api.v1.domain.*;
-import org.apache.fineract.cn.teller.util.TellerGenerator;
-import org.junit.Assert;
-import org.junit.Test;
-import org.mockito.Matchers;
-import org.mockito.Mockito;
-
-import java.math.BigDecimal;
-import java.time.Clock;
-import java.time.LocalDate;
-import java.time.LocalDateTime;
-import java.util.Optional;
-
-public class TestTellerBalance extends AbstractTellerTest {
-
-  @Test
-  public void shouldCreateTellerBalanceSheet() throws Exception {
-    final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-    final Teller randomTeller = TellerGenerator.createRandomTeller();
-
-    Mockito.doAnswer(invocation -> true)
-        .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(randomTeller.getTellerAccountIdentifier()));
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(randomTeller.getVaultAccountIdentifier()));
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(randomTeller.getChequesReceivableAccount()));
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(randomTeller.getCashOverShortAccount()));
-
-    super.testSubject.create(officeIdentifier, randomTeller);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, randomTeller.getCode()));
-
-    final TellerManagementCommand command = new TellerManagementCommand();
-    command.setAction(TellerManagementCommand.Action.OPEN.name());
-    command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-    command.setAssignedEmployeeIdentifier(TEST_USER);
-
-    Mockito.doAnswer(invocation -> true)
-        .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-    super.testSubject.post(officeIdentifier, randomTeller.getCode(), command);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.OPEN_TELLER, randomTeller.getCode()));
-
-    final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-    unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-    unlockDrawerCommand.setPassword(randomTeller.getPassword());
-    super.testSubject.unlockDrawer(randomTeller.getCode(), unlockDrawerCommand);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, randomTeller.getCode()));
-
-    this.prepareCheque(randomTeller);
-    this.prepareAccountEntryMocks(randomTeller.getTellerAccountIdentifier());
-
-    final TellerBalanceSheet tellerBalanceSheet = super.testSubject.getBalance(officeIdentifier, randomTeller.getCode());
-    Assert.assertTrue(BigDecimal.valueOf(604.00D).compareTo(tellerBalanceSheet.getCashReceivedTotal()) == 0);
-    Assert.assertTrue(BigDecimal.valueOf(150.00D).compareTo(tellerBalanceSheet.getCashDisbursedTotal()) == 0);
-    Assert.assertTrue(BigDecimal.valueOf(500.00D).compareTo(tellerBalanceSheet.getChequesReceivedTotal()) == 0);
-    Assert.assertTrue(BigDecimal.valueOf(454.00D).compareTo(tellerBalanceSheet.getCashOnHand()) == 0);
-  }
-
-  private void prepareCheque(final Teller teller) throws Exception {
-    final TellerTransaction chequeTransaction =  new TellerTransaction();
-    chequeTransaction.setTransactionType(ServiceConstants.TX_CHEQUE);
-    chequeTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-    chequeTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-    chequeTransaction.setProductCaseIdentifier(RandomStringUtils.randomAlphanumeric(32));
-    chequeTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-    chequeTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-    chequeTransaction.setClerk(TEST_USER);
-    chequeTransaction.setAmount(BigDecimal.valueOf(500.00D));
-
-    final MICR micr = new MICR();
-    micr.setChequeNumber("0011");
-    micr.setBranchSortCode("08154711");
-    micr.setAccountNumber("4711");
-
-    Mockito
-        .doAnswer(invocation -> Optional.empty())
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(micr.getAccountNumber()));
-
-    final Cheque cheque = new Cheque();
-    cheque.setMicr(micr);
-    cheque.setDrawee("whatever Bank");
-    cheque.setDrawer("Jane Doe");
-    cheque.setPayee("John Doe");
-    cheque.setDateIssued(DateConverter.toIsoString(LocalDate.now(Clock.systemUTC())));
-    cheque.setAmount(BigDecimal.valueOf(500.00D));
-    cheque.setOpenCheque(Boolean.FALSE);
-    chequeTransaction.setCheque(cheque);
-
-    Mockito
-        .doAnswer(invocation -> {
-          final Account mockedAccount = new Account();
-          mockedAccount.setState(Account.State.OPEN.name());
-          return Optional.of(mockedAccount);
-        })
-        .when(super.accountingServiceSpy).findAccount(chequeTransaction.getCustomerAccountIdentifier());
-
-    final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), chequeTransaction);
-
-    super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(),"CONFIRM", null);
-
-    Assert.assertTrue(
-        super.eventRecorder.wait(EventConstants.CONFIRM_TRANSACTION,
-            tellerTransactionCosts.getTellerTransactionIdentifier())
-    );
-  }
-
-  private void prepareAccountEntryMocks(final String accountIdentifier) {
-
-    final AccountEntry firstDeposit = new AccountEntry();
-    firstDeposit.setType(AccountEntry.Type.DEBIT.name());
-    firstDeposit.setMessage(ServiceConstants.TX_CASH_DEPOSIT);
-    firstDeposit.setAmount(200.00D);
-
-    final AccountEntry secondDeposit = new AccountEntry();
-    secondDeposit.setType(AccountEntry.Type.DEBIT.name());
-    secondDeposit.setMessage(ServiceConstants.TX_CASH_DEPOSIT);
-    secondDeposit.setAmount(150.00D);
-
-    final AccountEntry firstWithdrawal = new AccountEntry();
-    firstWithdrawal.setType(AccountEntry.Type.CREDIT.name());
-    firstWithdrawal.setMessage(ServiceConstants.TX_CASH_WITHDRAWAL);
-    firstWithdrawal.setAmount(50.00D);
-
-    final AccountEntry secondWithdrawal = new AccountEntry();
-    secondWithdrawal.setType(AccountEntry.Type.CREDIT.name());
-    secondWithdrawal.setMessage(ServiceConstants.TX_CASH_WITHDRAWAL);
-    secondWithdrawal.setAmount(100.00D);
-
-    final AccountEntry loanRepayment = new AccountEntry();
-    loanRepayment.setType(AccountEntry.Type.DEBIT.name());
-    loanRepayment.setMessage(ServiceConstants.TX_REPAYMENT);
-    loanRepayment.setAmount(254.00D);
-
-    final AccountEntryPage accountEntryPage = new AccountEntryPage();
-    accountEntryPage.setAccountEntries(
-        Lists.newArrayList(firstDeposit, secondDeposit, firstWithdrawal, secondWithdrawal, loanRepayment)
-    );
-    accountEntryPage.setTotalPages(1);
-    accountEntryPage.setTotalElements(Integer.valueOf(accountEntryPage.getAccountEntries().size()).longValue());
-
-    Mockito
-        .doAnswer(invocation -> accountEntryPage)
-        .when(super.accountingServiceSpy)
-        .fetchAccountEntries(Matchers.eq(accountIdentifier), Matchers.anyString(), Matchers.eq(0), Matchers.anyInt());
-  }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerDenomination.java b/service/src/test/java/org/apache/fineract/cn/teller/TestTellerDenomination.java
deleted file mode 100644
index c8d2bc8..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerDenomination.java
+++ /dev/null
@@ -1,272 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import com.google.common.collect.Lists;
-import org.apache.commons.lang3.RandomStringUtils;
-import org.apache.fineract.cn.accounting.api.v1.domain.Account;
-import org.apache.fineract.cn.accounting.api.v1.domain.AccountEntry;
-import org.apache.fineract.cn.accounting.api.v1.domain.AccountEntryPage;
-import org.apache.fineract.cn.accounting.api.v1.domain.JournalEntry;
-import org.apache.fineract.cn.lang.DateRange;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.teller.api.v1.client.TellerValidationException;
-import org.apache.fineract.cn.teller.api.v1.domain.Teller;
-import org.apache.fineract.cn.teller.api.v1.domain.TellerDenomination;
-import org.apache.fineract.cn.teller.api.v1.domain.TellerManagementCommand;
-import org.apache.fineract.cn.teller.api.v1.domain.UnlockDrawerCommand;
-import org.apache.fineract.cn.teller.util.TellerGenerator;
-import org.junit.Assert;
-import org.junit.Test;
-import org.mockito.Matchers;
-import org.mockito.Mockito;
-
-import java.math.BigDecimal;
-import java.time.Clock;
-import java.time.LocalDate;
-import java.util.List;
-import java.util.Optional;
-
-public class TestTellerDenomination extends AbstractTellerTest {
-
-  public TestTellerDenomination() {
-    super();
-  }
-
-  @Test
-  public void shouldProcessDenomination() throws Exception {
-    final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-    final BigDecimal openingAmount = BigDecimal.valueOf(20000.00D);
-
-    final Teller teller = this.prepareTeller(officeIdentifier, openingAmount);
-
-    super.testSubject.post(teller.getCode(), "PAUSE");
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.PAUSE_TELLER, teller.getCode()));
-
-    final AccountEntry openingAmountEntry = new AccountEntry();
-    openingAmountEntry.setType(AccountEntry.Type.DEBIT.name());
-    openingAmountEntry.setMessage(ServiceConstants.TX_REPAYMENT);
-    openingAmountEntry.setAmount(openingAmount.doubleValue());
-
-    final AccountEntryPage accountEntryPage = new AccountEntryPage();
-    accountEntryPage.setAccountEntries(Lists.newArrayList(openingAmountEntry));
-    accountEntryPage.setTotalPages(1);
-    accountEntryPage.setTotalElements(Integer.valueOf(accountEntryPage.getAccountEntries().size()).longValue());
-
-    Mockito
-        .doAnswer(invocation -> accountEntryPage)
-        .when(super.accountingServiceSpy)
-        .fetchAccountEntries(Matchers.eq(teller.getTellerAccountIdentifier()), Matchers.anyString(),
-            Matchers.eq(0), Matchers.anyInt());
-
-    final TellerDenomination tellerDenomination = new TellerDenomination();
-    tellerDenomination.setCountedTotal(openingAmount);
-    tellerDenomination.setNote("Nothing has happened.");
-
-    super.testSubject.saveTellerDenomination(officeIdentifier, teller.getCode(), tellerDenomination);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.SAVE_DENOMINATION, teller.getCode()));
-
-    Mockito
-        .verify(super.accountingServiceSpy, Mockito.atMost(1))
-        .postJournalEntry(Matchers.any(JournalEntry.class));
-
-    final LocalDate now = LocalDate.now(Clock.systemUTC());
-    final DateRange dateRange = new DateRange(now, now);
-    final List<TellerDenomination> tellerDenominations =
-        super.testSubject.fetchTellerDenominations(officeIdentifier, teller.getCode(), dateRange.toString());
-
-    Assert.assertEquals(1, tellerDenominations.size());
-    Assert.assertNull(tellerDenominations.get(0).getAdjustingJournalEntry());
-
-    this.closeTeller(officeIdentifier, teller.getCode());
-  }
-
-  @Test
-  public void shouldProcessDenominationOver() throws Exception {
-    final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-    final BigDecimal openingAmount = BigDecimal.valueOf(20000.00D);
-
-    final Teller teller = this.prepareTeller(officeIdentifier, openingAmount);
-
-    super.testSubject.post(teller.getCode(), "PAUSE");
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.PAUSE_TELLER, teller.getCode()));
-
-    final AccountEntry openingAmountEntry = new AccountEntry();
-    openingAmountEntry.setType(AccountEntry.Type.DEBIT.name());
-    openingAmountEntry.setMessage(ServiceConstants.TX_REPAYMENT);
-    openingAmountEntry.setAmount(openingAmount.doubleValue());
-
-    final AccountEntryPage accountEntryPage = new AccountEntryPage();
-    accountEntryPage.setAccountEntries(Lists.newArrayList(openingAmountEntry));
-    accountEntryPage.setTotalPages(1);
-    accountEntryPage.setTotalElements(Integer.valueOf(accountEntryPage.getAccountEntries().size()).longValue());
-
-    Mockito
-        .doAnswer(invocation -> accountEntryPage)
-        .when(super.accountingServiceSpy)
-        .fetchAccountEntries(Matchers.eq(teller.getTellerAccountIdentifier()), Matchers.anyString(),
-            Matchers.eq(0), Matchers.anyInt());
-
-    final TellerDenomination tellerDenomination = new TellerDenomination();
-    tellerDenomination.setCountedTotal(openingAmount.add(BigDecimal.valueOf(1000.00D)));
-    tellerDenomination.setNote("Teller is over.");
-
-    super.testSubject.saveTellerDenomination(officeIdentifier, teller.getCode(), tellerDenomination);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.SAVE_DENOMINATION, teller.getCode()));
-
-    Mockito
-        .verify(super.accountingServiceSpy, Mockito.atMost(2))
-        .postJournalEntry(Matchers.any(JournalEntry.class));
-
-    final LocalDate now = LocalDate.now(Clock.systemUTC());
-    final DateRange dateRange = new DateRange(now, now);
-    final List<TellerDenomination> tellerDenominations =
-        super.testSubject.fetchTellerDenominations(officeIdentifier, teller.getCode(), dateRange.toString());
-
-    Assert.assertEquals(1, tellerDenominations.size());
-    Assert.assertNotNull(tellerDenominations.get(0).getAdjustingJournalEntry());
-
-    this.closeTeller(officeIdentifier, teller.getCode());
-  }
-
-  @Test
-  public void shouldProcessDenominationShort() throws Exception {
-    final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-    final BigDecimal openingAmount = BigDecimal.valueOf(20000.00D);
-
-    final Teller teller = this.prepareTeller(officeIdentifier, openingAmount);
-
-    super.testSubject.post(teller.getCode(), "PAUSE");
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.PAUSE_TELLER, teller.getCode()));
-
-    final AccountEntry openingAmountEntry = new AccountEntry();
-    openingAmountEntry.setType(AccountEntry.Type.DEBIT.name());
-    openingAmountEntry.setMessage(ServiceConstants.TX_REPAYMENT);
-    openingAmountEntry.setAmount(openingAmount.doubleValue());
-
-    final AccountEntryPage accountEntryPage = new AccountEntryPage();
-    accountEntryPage.setAccountEntries(Lists.newArrayList(openingAmountEntry));
-    accountEntryPage.setTotalPages(1);
-    accountEntryPage.setTotalElements(Integer.valueOf(accountEntryPage.getAccountEntries().size()).longValue());
-
-    Mockito
-        .doAnswer(invocation -> accountEntryPage)
-        .when(super.accountingServiceSpy)
-        .fetchAccountEntries(Matchers.eq(teller.getTellerAccountIdentifier()), Matchers.anyString(),
-            Matchers.eq(0), Matchers.anyInt());
-
-    final TellerDenomination tellerDenomination = new TellerDenomination();
-    tellerDenomination.setCountedTotal(openingAmount.subtract(BigDecimal.valueOf(1000.00D)));
-    tellerDenomination.setNote("Teller is short.");
-
-    super.testSubject.saveTellerDenomination(officeIdentifier, teller.getCode(), tellerDenomination);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.SAVE_DENOMINATION, teller.getCode()));
-
-    Mockito
-        .verify(super.accountingServiceSpy, Mockito.atMost(2))
-        .postJournalEntry(Matchers.any(JournalEntry.class));
-
-    final LocalDate now = LocalDate.now(Clock.systemUTC());
-    final DateRange dateRange = new DateRange(now, now);
-    final List<TellerDenomination> tellerDenominations =
-        super.testSubject.fetchTellerDenominations(officeIdentifier, teller.getCode(), dateRange.toString());
-
-    Assert.assertEquals(1, tellerDenominations.size());
-    Assert.assertNotNull(tellerDenominations.get(0).getAdjustingJournalEntry());
-
-    this.closeTeller(officeIdentifier, teller.getCode());
-  }
-
-  @Test
-  public void shouldNotProcessDenominationIsActive() throws Exception {
-    final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-    final BigDecimal openingAmount = BigDecimal.valueOf(20000.00D);
-
-    final Teller teller = this.prepareTeller(officeIdentifier, openingAmount);
-
-    final TellerDenomination tellerDenomination = new TellerDenomination();
-    tellerDenomination.setCountedTotal(openingAmount.subtract(BigDecimal.valueOf(1000.00D)));
-
-    try {
-      super.testSubject.saveTellerDenomination(officeIdentifier, teller.getCode(), tellerDenomination);
-      Assert.fail();
-    } catch (final TellerValidationException tvex) {
-      // do nothing ... expected
-    }
-
-    this.closeTeller(officeIdentifier, teller.getCode());
-  }
-
-  private Teller prepareTeller(final String officeIdentifier, BigDecimal openingAmount)  throws Exception {
-    final Teller teller = TellerGenerator.createRandomTeller();
-
-    Mockito.doAnswer(invocation -> true)
-        .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-
-    Mockito.doAnswer(invocation -> Optional.of(new Account()))
-        .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-    super.testSubject.create(officeIdentifier, teller);
-
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-    final TellerManagementCommand command = new TellerManagementCommand();
-    command.setAction(TellerManagementCommand.Action.OPEN.name());
-    command.setAdjustment(TellerManagementCommand.Adjustment.DEBIT.name());
-    command.setAmount(openingAmount);
-    command.setAssignedEmployeeIdentifier(AbstractTellerTest.TEST_USER);
-
-    Mockito.doAnswer(invocation -> true)
-        .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-    super.testSubject.post(officeIdentifier, teller.getCode(), command);
-
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode()));
-
-    final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-    unlockDrawerCommand.setEmployeeIdentifier(AbstractTellerTest.TEST_USER);
-    unlockDrawerCommand.setPassword(teller.getPassword());
-
-    super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode()));
-
-    return teller;
-  }
-
-  private void closeTeller(final String officeIdentifier, final String tellerCode) throws Exception {
-    final TellerManagementCommand closeTellerCommand = new TellerManagementCommand();
-    closeTellerCommand.setAction(TellerManagementCommand.Action.CLOSE.name());
-    closeTellerCommand.setAmount(BigDecimal.ZERO);
-    closeTellerCommand.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-
-    super.testSubject.post(officeIdentifier, tellerCode, closeTellerCommand);
-    Assert.assertTrue(super.eventRecorder.wait(EventConstants.CLOSE_TELLER, tellerCode));
-
-  }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerManagement.java b/service/src/test/java/org/apache/fineract/cn/teller/TestTellerManagement.java
deleted file mode 100644
index 62c40cb..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerManagement.java
+++ /dev/null
@@ -1,780 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import org.apache.commons.lang3.RandomStringUtils;
-import org.apache.fineract.cn.accounting.api.v1.domain.Account;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.teller.api.v1.client.TellerAlreadyExistsException;
-import org.apache.fineract.cn.teller.api.v1.client.TellerNotFoundException;
-import org.apache.fineract.cn.teller.api.v1.client.TellerValidationException;
-import org.apache.fineract.cn.teller.api.v1.domain.Teller;
-import org.apache.fineract.cn.teller.api.v1.domain.TellerBalanceSheet;
-import org.apache.fineract.cn.teller.api.v1.domain.TellerManagementCommand;
-import org.apache.fineract.cn.teller.util.TellerGenerator;
-import org.junit.Assert;
-import org.junit.Before;
-import org.junit.Rule;
-import org.junit.Test;
-import org.mockito.Matchers;
-import org.mockito.Mockito;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.MediaType;
-import org.springframework.restdocs.JUnitRestDocumentation;
-import org.springframework.test.web.servlet.MockMvc;
-import org.springframework.test.web.servlet.setup.MockMvcBuilders;
-import org.springframework.web.context.WebApplicationContext;
-
-import java.math.BigDecimal;
-import java.util.Arrays;
-import java.util.List;
-import java.util.Optional;
-
-import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document;
-import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.documentationConfiguration;
-import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.delete;
-import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get;
-import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post;
-import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.put;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint;
-import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
-
-public class TestTellerManagement extends AbstractTellerTest {
-
-    @Rule
-    public final JUnitRestDocumentation restDocumentation = new JUnitRestDocumentation("src/doc/generated-snippets/test-teller-management");
-
-    @Autowired
-    private WebApplicationContext context;
-
-    private MockMvc mockMvc;
-
-    final String path = "/teller/v1";
-
-    @Before
-    public void setUp(){
-
-        this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context)
-                .apply(documentationConfiguration(this.restDocumentation))
-                .alwaysDo(document("{method-name}", preprocessRequest(prettyPrint()), preprocessResponse(prettyPrint())))
-                .build();
-    }
-
-    public TestTellerManagement() {
-        super();
-    }
-
-    @Test
-    public void shouldCreateTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        this.mockMvc.perform(post(path + "/offices/" + officeIdentifier + "/teller/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode()).accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().isNotFound());
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCreateTellerUnknownOffice() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> false)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCreateTellerUnknownTellerAccount() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> Optional.empty())
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCreateTellerUnknownVaultAccount() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> Optional.empty())
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-
-    @Test(expected = TellerAlreadyExistsException.class)
-    public void shouldNotCreateTellerAlreadyExists() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-    @Test
-    public void shouldFindTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        final Teller foundTeller = super.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertNotNull(foundTeller);
-
-        this.compareTeller(teller, foundTeller);
-
-        try
-        {
-            this.mockMvc.perform(get(path + "/offices/" + officeIdentifier + "/teller/" + foundTeller.getCode())
-                    .accept(MediaType.ALL_VALUE))
-                    .andExpect(status().is4xxClientError());
-        } catch (Exception exception){ exception.printStackTrace(); }
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotFindTellerUnknownOffice() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final String tellerCode = RandomStringUtils.randomAlphabetic(32);
-
-        Mockito.doAnswer(invocation -> false)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        super.testSubject.find(officeIdentifier, tellerCode);
-    }
-
-    @Test(expected = TellerNotFoundException.class)
-    public void shouldNotFindTellerUnknownTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final String tellerCode = RandomStringUtils.randomAlphabetic(32);
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        super.testSubject.find(officeIdentifier, tellerCode);
-    }
-
-    @Test
-    public void shouldFetchTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final List<Teller> tellerToCreate = Arrays.asList(
-                TellerGenerator.createRandomTeller(),
-                TellerGenerator.createRandomTeller(),
-                TellerGenerator.createRandomTeller(),
-                TellerGenerator.createRandomTeller(),
-                TellerGenerator.createRandomTeller()
-        );
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        tellerToCreate.forEach(teller -> {
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-
-            super.testSubject.create(officeIdentifier, teller);
-
-            try {
-                Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-            } catch (final InterruptedException e) {
-                throw new IllegalStateException(e);
-            }
-        });
-
-        final List<Teller> fetchedTeller = super.testSubject.fetch(officeIdentifier);
-
-        Assert.assertTrue(fetchedTeller.size() >= tellerToCreate.size());
-
-        try
-        {
-            this.mockMvc.perform(get(path + "/offices/" + officeIdentifier + "/teller/")
-                    .accept(MediaType.ALL_VALUE).contentType(MediaType.APPLICATION_JSON_VALUE))
-                    .andExpect(status().is4xxClientError());
-        } catch (Exception exception){ exception.printStackTrace(); }
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotFetchTellerUnknownOffice() {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-
-        Mockito.doAnswer(invocation -> false)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        super.testSubject.fetch(officeIdentifier);
-    }
-
-    @Test
-    public void shouldUpdateTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        teller.setCashdrawLimit(BigDecimal.valueOf(15000.00D));
-
-        super.testSubject.change(officeIdentifier, teller.getCode(), teller);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.PUT_TELLER, teller.getCode()));
-
-        final Teller changedTeller = super.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertNotNull(changedTeller);
-
-        this.compareTeller(teller, changedTeller);
-
-        this.mockMvc.perform(put(path + "/offices/" + officeIdentifier + "/teller/" + teller.getCode())
-                .accept(MediaType.APPLICATION_JSON_VALUE)
-                .contentType(MediaType.APPLICATION_JSON)
-                .content(teller.getCode()))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotUpdateTellerUnknownOffice() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        Mockito.doAnswer(invocation -> false)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        super.testSubject.change(officeIdentifier, teller.getCode(), teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotUpdateTellerUnknownTellerAccount() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        teller.setTellerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> Optional.empty())
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-
-        super.testSubject.change(officeIdentifier, teller.getCode(), teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotUpdateTellerUnknownVaultAccount() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        teller.setVaultAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> Optional.empty())
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-
-        super.testSubject.change(officeIdentifier, teller.getCode(), teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotUpdateTellerMismatch() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final String tellerCode = RandomStringUtils.randomAlphanumeric(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCode(tellerCode);
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        teller.setCode(RandomStringUtils.randomAlphanumeric(32));
-
-        super.testSubject.change(officeIdentifier, tellerCode, teller);
-    }
-
-    @Test(expected = TellerNotFoundException.class)
-    public void shouldNotUpdateTellerUnknownTeller() {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        super.testSubject.change(officeIdentifier, teller.getCode(), teller);
-    }
-
-    @Test
-    public void shouldOpenTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        final TellerManagementCommand command = new TellerManagementCommand();
-        command.setAction(TellerManagementCommand.Action.OPEN.name());
-        command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-        command.setAssignedEmployeeIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode()));
-
-        final Teller openedTeller = super.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertEquals(Teller.State.OPEN.name(), openedTeller.getState());
-        Assert.assertEquals(command.getAssignedEmployeeIdentifier(), openedTeller.getAssignedEmployee());
-
-        this.mockMvc.perform(post(path + "/offices/" + officeIdentifier + "/teller/" + teller.getCode() + "/commands/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode()).accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().isNotFound());
-    }
-
-    @Test
-    public void shouldCloseTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        final TellerManagementCommand command = new TellerManagementCommand();
-        command.setAction(TellerManagementCommand.Action.OPEN.name());
-        command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-        command.setAssignedEmployeeIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-
-        super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode());
-
-        command.setAction(TellerManagementCommand.Action.CLOSE.name());
-        command.setAssignedEmployeeIdentifier(null);
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.CLOSE_TELLER, teller.getCode()));
-
-        final Teller openedTeller = super.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertEquals(Teller.State.CLOSED.name(), openedTeller.getState());
-        Assert.assertNull(openedTeller.getAssignedEmployee());
-
-        this.mockMvc.perform(post(path + "/offices/" + officeIdentifier + "/teller/" + teller.getCode() + "/commands/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode()).accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().isNotFound());
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCloseTellerAlreadyClosed() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        final TellerManagementCommand command = new TellerManagementCommand();
-        command.setAction(TellerManagementCommand.Action.CLOSE.name());
-        command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotOpenTellerAlreadyOpen() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        final TellerManagementCommand command = new TellerManagementCommand();
-        command.setAction(TellerManagementCommand.Action.OPEN.name());
-        command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-        command.setAssignedEmployeeIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-
-        super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode());
-
-        // and again ...
-        super.testSubject.post(officeIdentifier, teller.getCode(), command);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCreateTellerMinimumCashWithdrawalLimitViolation() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(0.00001D));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotCreateTellerMaximumCashWithdrawalLimitViolation() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(2000000000));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-    }
-
-    @Test
-    public void shouldCloseTellerEvenCashDrawLimitExceeding() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(1000.00D));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode());
-
-        final TellerManagementCommand openCommand = new TellerManagementCommand();
-        openCommand.setAction(TellerManagementCommand.Action.OPEN.name());
-        openCommand.setAdjustment(TellerManagementCommand.Adjustment.DEBIT.name());
-        openCommand.setAmount(BigDecimal.valueOf(1100.00D));
-        openCommand.setAssignedEmployeeIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).employeeExists(Matchers.eq(openCommand.getAssignedEmployeeIdentifier()));
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), openCommand);
-
-        super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode());
-
-        final TellerManagementCommand closeCommand = new TellerManagementCommand();
-        closeCommand.setAction(TellerManagementCommand.Action.CLOSE.name());
-        closeCommand.setAdjustment(TellerManagementCommand.Adjustment.CREDIT.name());
-        closeCommand.setAmount(BigDecimal.valueOf(1100.00D));
-
-        super.testSubject.post(officeIdentifier, teller.getCode(), closeCommand);
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.CLOSE_TELLER, teller.getCode()));
-    }
-
-    @Test
-    public void shouldDeleteTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(10000.00D));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        final Teller fetchedTeller = this.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertTrue(fetchedTeller.getLastOpenedBy() == null);
-
-        super.testSubject.deleteTeller(officeIdentifier, teller.getCode());
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.DELETE_TELLER, teller.getCode()));
-
-        try
-        {
-            this.mockMvc.perform(delete(path + "/offices/" + officeIdentifier + "/teller/" + fetchedTeller.getCode())
-                    .accept(MediaType.ALL_VALUE)
-                    .contentType(MediaType.APPLICATION_JSON_VALUE))
-                    .andExpect(status().isNotFound());
-        } catch (Exception exception){ exception.printStackTrace(); }
-    }
-
-    @Test(expected = TellerValidationException.class)
-    public void shouldNotDeleteTeller() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(10000.00D));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        final TellerManagementCommand openCommand = new TellerManagementCommand();
-        openCommand.setAction(TellerManagementCommand.Action.OPEN.name());
-        openCommand.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-        openCommand.setAssignedEmployeeIdentifier(RandomStringUtils.randomAlphanumeric(32));
-
-        this.testSubject.post(officeIdentifier, teller.getCode(), openCommand);
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.OPEN_TELLER, teller.getCode()));
-
-        final Teller fetchedTeller = this.testSubject.find(officeIdentifier, teller.getCode());
-        Assert.assertTrue(fetchedTeller.getLastOpenedBy() != null);
-
-        super.testSubject.deleteTeller(officeIdentifier, teller.getCode());
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.DELETE_TELLER, teller.getCode()));
-
-    }
-
-    @Test
-    public void shouldReturnZeroBalanceTellerNeverOpened() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-        teller.setCashdrawLimit(BigDecimal.valueOf(10000.00D));
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        final TellerBalanceSheet tellerBalanceSheet = super.testSubject.getBalance(officeIdentifier, teller.getCode());
-        Assert.assertTrue(BigDecimal.ZERO.compareTo(tellerBalanceSheet.getCashOnHand()) == 0);
-    }
-
-    private void compareTeller(final Teller expected, final Teller actual) {
-        Assert.assertEquals(expected.getCode(), actual.getCode());
-        Assert.assertEquals(expected.getTellerAccountIdentifier(), actual.getTellerAccountIdentifier());
-        Assert.assertEquals(expected.getVaultAccountIdentifier(), actual.getVaultAccountIdentifier());
-        Assert.assertTrue(expected.getCashdrawLimit().compareTo(actual.getCashdrawLimit()) == 0);
-    }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerOperation.java b/service/src/test/java/org/apache/fineract/cn/teller/TestTellerOperation.java
deleted file mode 100644
index 45e21f6..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/TestTellerOperation.java
+++ /dev/null
@@ -1,890 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller;
-
-import com.google.common.collect.Lists;
-import org.apache.commons.lang3.RandomStringUtils;
-import org.apache.fineract.cn.accounting.api.v1.domain.Account;
-import org.apache.fineract.cn.deposit.api.v1.definition.domain.ProductDefinition;
-import org.apache.fineract.cn.deposit.api.v1.instance.domain.ProductInstance;
-import org.apache.fineract.cn.lang.DateConverter;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.teller.api.v1.client.TellerNotFoundException;
-import org.apache.fineract.cn.teller.api.v1.client.TellerTransactionValidationException;
-import org.apache.fineract.cn.teller.api.v1.client.TransactionProcessingException;
-import org.apache.fineract.cn.teller.api.v1.domain.*;
-import org.apache.fineract.cn.teller.service.internal.service.helper.ChequeService;
-import org.apache.fineract.cn.teller.util.TellerGenerator;
-import org.junit.Assert;
-import org.junit.Before;
-import org.junit.Rule;
-import org.junit.Test;
-import org.mockito.Matchers;
-import org.mockito.Mockito;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.mock.mockito.MockBean;
-import org.springframework.http.MediaType;
-import org.springframework.restdocs.JUnitRestDocumentation;
-import org.springframework.restdocs.mockmvc.RestDocumentationResultHandler;
-import org.springframework.test.web.servlet.MockMvc;
-import org.springframework.test.web.servlet.setup.MockMvcBuilders;
-import org.springframework.web.context.WebApplicationContext;
-
-import java.math.BigDecimal;
-import java.time.Clock;
-import java.time.LocalDate;
-import java.time.LocalDateTime;
-import java.util.Collections;
-import java.util.Optional;
-
-import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document;
-import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.documentationConfiguration;
-import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse;
-import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint;
-import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
-
-public class TestTellerOperation extends AbstractTellerTest {
-
-    @Rule
-    public final JUnitRestDocumentation restDocumentation = new JUnitRestDocumentation("src/doc/generated-snippets/test-operation-management");
-
-    @Autowired
-    private WebApplicationContext context;
-
-    private MockMvc mockMvc;
-
-    final String path = "/teller/v1";
-
-    @Before
-    public void setUp(){
-
-        this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context)
-                .apply(documentationConfiguration(this.restDocumentation))
-                .alwaysDo(document("{method-name}", preprocessRequest(prettyPrint()), preprocessResponse(prettyPrint())))
-                .build();
-    }
-
-    private static Teller tellerUnderTest = null;
-    private final BigDecimal commonAmount = BigDecimal.valueOf(1234.56D);
-
-    @MockBean
-    private ChequeService chequeService;
-
-    public TestTellerOperation() {
-        super();
-    }
-
-    @Test
-    public void shouldUnlock() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/drawer/")
-                .accept(MediaType.APPLICATION_JSON_VALUE)
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode()).accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-
-    @Test(expected = TellerNotFoundException.class)
-    public void shouldNotUnlockUserMismatch() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier("unassigneduser");
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-    }
-
-    @Test(expected = TellerNotFoundException.class)
-    public void shouldNotUnlockPasswordMismatch() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword("wrongpasword");
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-    }
-
-    @Test
-    public void shouldPauseTeller() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        super.testSubject.post(teller.getCode(), "PAUSE");
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.PAUSE_TELLER, teller.getCode()));
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/")
-                .accept(MediaType.APPLICATION_JSON_VALUE)
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Paused").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldOpenAccount() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_OPEN_ACCOUNT);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.valueOf(1234.56D));
-
-        final Account account = new Account();
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-        Mockito.doAnswer(invocation -> new ProductDefinition())
-                .when(super.depositAccountManagementServiceSpy).findProductDefinition(tellerTransaction.getProductIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/")
-                .accept(MediaType.APPLICATION_JSON_VALUE)
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Open").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldCloseAccount() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CLOSE_ACCOUNT);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(this.commonAmount);
-
-        final Account account = new Account();
-        account.setBalance(this.commonAmount.doubleValue());
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/")
-                .accept(MediaType.APPLICATION_JSON_VALUE)
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Closed").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldCloseAccountZeroBalance() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CLOSE_ACCOUNT);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.ZERO);
-
-        final Account account = new Account();
-        account.setBalance(0.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-    }
-
-    @Test(expected = TransactionProcessingException.class)
-    public void shouldNotCloseAccountRemainingBalance() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CLOSE_ACCOUNT);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(this.commonAmount);
-
-        final Account account = new Account();
-        account.setBalance(2000.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(), "CONFIRM", null);
-    }
-
-    @Test
-    public void shouldTransferAccountToAccount() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_ACCOUNT_TRANSFER);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setTargetAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(commonAmount);
-
-        final Account customerAccount = new Account();
-        customerAccount.setBalance(2000.00D);
-        customerAccount.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(customerAccount))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-
-        final Account targetAccount = new Account();
-        targetAccount.setBalance(2000.00D);
-        targetAccount.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(targetAccount))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getTargetAccountIdentifier());
-
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/transactions/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Transferred").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldDeposit() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_DEPOSIT);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(commonAmount);
-
-        final Account account = new Account();
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/transactions/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Deposited").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldWithdraw() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_WITHDRAWAL);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(commonAmount);
-
-        final Account account = new Account();
-        account.setBalance(2000.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/transactions/")
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Withdrawn").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test(expected = TransactionProcessingException.class)
-    public void shouldNotWithdrawLackingBalance() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_WITHDRAWAL);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.valueOf(5000L));
-
-        final Account account = new Account();
-        account.setBalance(2000.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(), "CONFIRM", null);
-    }
-
-    @Test(expected = TransactionProcessingException.class)
-    public void shouldNotWithdrawExceedsCashDrawLimit() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_WITHDRAWAL);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.valueOf(15000L));
-
-        final Account account = new Account();
-        account.setState(Account.State.OPEN.name());
-        account.setBalance(20000.00D);
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(tellerTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        super.testSubject.post(teller.getCode(), tellerTransaction);
-    }
-
-    private Teller prepareTeller() throws Exception {
-        if (TestTellerOperation.tellerUnderTest == null) {
-            final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-            TestTellerOperation.tellerUnderTest = TellerGenerator.createRandomTeller();
-
-            Mockito.doAnswer(invocation -> true)
-                    .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(TestTellerOperation.tellerUnderTest.getTellerAccountIdentifier()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(TestTellerOperation.tellerUnderTest.getVaultAccountIdentifier()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(TestTellerOperation.tellerUnderTest.getChequesReceivableAccount()));
-            Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                    .when(super.accountingServiceSpy).findAccount(Matchers.eq(TestTellerOperation.tellerUnderTest.getCashOverShortAccount()));
-
-            super.testSubject.create(officeIdentifier, TestTellerOperation.tellerUnderTest);
-
-            Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, TestTellerOperation.tellerUnderTest.getCode()));
-
-            Mockito.verify(this.organizationServiceSpy, Mockito.times(1)).setTellerReference(Matchers.eq(officeIdentifier));
-
-            final TellerManagementCommand command = new TellerManagementCommand();
-            command.setAction(TellerManagementCommand.Action.OPEN.name());
-            command.setAdjustment(TellerManagementCommand.Adjustment.NONE.name());
-            command.setAssignedEmployeeIdentifier(TEST_USER);
-
-            Mockito.doAnswer(invocation -> true)
-                    .when(super.organizationServiceSpy).employeeExists(Matchers.eq(command.getAssignedEmployeeIdentifier()));
-
-            super.testSubject.post(officeIdentifier, TestTellerOperation.tellerUnderTest.getCode(), command);
-
-            Assert.assertTrue(super.eventRecorder.wait(EventConstants.OPEN_TELLER, TestTellerOperation.tellerUnderTest.getCode()));
-        }
-
-        final ProductInstance productInstance = new ProductInstance();
-        productInstance.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        productInstance.setBalance(0.00D);
-        Mockito.doAnswer(invocation -> productInstance)
-                .when(super.depositAccountManagementServiceSpy).findProductInstance(Matchers.anyString());
-
-        final ProductDefinition productDefinition = new ProductDefinition();
-        productDefinition.setMinimumBalance(0.00D);
-        Mockito.doAnswer(invocation -> productDefinition)
-                .when(super.depositAccountManagementServiceSpy).findProductDefinition(Matchers.eq(productInstance.getProductIdentifier()));
-
-        return TestTellerOperation.tellerUnderTest;
-    }
-
-    @Test(expected = TellerNotFoundException.class)
-    public void shouldNotUnlockTellerClosed() throws Exception {
-        final String officeIdentifier = RandomStringUtils.randomAlphabetic(32);
-        final Teller teller = TellerGenerator.createRandomTeller();
-
-        Mockito.doAnswer(invocation -> true)
-                .when(super.organizationServiceSpy).officeExists(Matchers.eq(officeIdentifier));
-
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getTellerAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getVaultAccountIdentifier()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getChequesReceivableAccount()));
-        Mockito.doAnswer(invocation -> Optional.of(new Account()))
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(teller.getCashOverShortAccount()));
-
-        super.testSubject.create(officeIdentifier, teller);
-
-        Assert.assertTrue(super.eventRecorder.wait(EventConstants.POST_TELLER, teller.getCode()));
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-    }
-
-    @Test(expected = TransactionProcessingException.class)
-    public void shouldNotReopenAccountClosed() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction openAccountTransaction =  new TellerTransaction();
-        openAccountTransaction.setTransactionType(ServiceConstants.TX_OPEN_ACCOUNT);
-        openAccountTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        openAccountTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        openAccountTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        openAccountTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        openAccountTransaction.setClerk(TEST_USER);
-        openAccountTransaction.setAmount(commonAmount);
-
-        final Account account = new Account();
-        account.setState(Account.State.OPEN.name());
-        account.setBalance(2000.00D);
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(openAccountTransaction.getCustomerAccountIdentifier());
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.eq(openAccountTransaction));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(openAccountTransaction.getCustomerIdentifier());
-        Mockito.doAnswer(invocation -> new ProductDefinition())
-                .when(super.depositAccountManagementServiceSpy).findProductDefinition(openAccountTransaction.getProductIdentifier());
-
-        final TellerTransactionCosts openingCosts = super.testSubject.post(teller.getCode(), openAccountTransaction);
-        super.testSubject.confirm(teller.getCode(), openingCosts.getTellerTransactionIdentifier(), "CONFIRM", "excluded");
-        super.eventRecorder.wait(EventConstants.CONFIRM_TRANSACTION, openingCosts.getTellerTransactionIdentifier());
-
-        final TellerTransaction closeAccountTransaction =  new TellerTransaction();
-        closeAccountTransaction.setTransactionType(ServiceConstants.TX_CLOSE_ACCOUNT);
-        closeAccountTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        closeAccountTransaction.setProductIdentifier(openAccountTransaction.getProductIdentifier());
-        closeAccountTransaction.setCustomerAccountIdentifier(openAccountTransaction.getCustomerAccountIdentifier());
-        closeAccountTransaction.setCustomerIdentifier(openAccountTransaction.getCustomerIdentifier());
-        closeAccountTransaction.setClerk(TEST_USER);
-        closeAccountTransaction.setAmount(commonAmount);
-
-        account.setBalance(1234.56D);
-
-        final TellerTransactionCosts closingCosts = super.testSubject.post(teller.getCode(), closeAccountTransaction);
-        super.testSubject.confirm(teller.getCode(), closingCosts.getTellerTransactionIdentifier(), "CONFIRM", "excluded");
-        super.eventRecorder.wait(EventConstants.CONFIRM_TRANSACTION, closingCosts.getTellerTransactionIdentifier());
-
-        account.setState(Account.State.CLOSED.name());
-
-        final TellerTransaction reopenAccountTransaction =  new TellerTransaction();
-        reopenAccountTransaction.setTransactionType(ServiceConstants.TX_OPEN_ACCOUNT);
-        reopenAccountTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        reopenAccountTransaction.setProductIdentifier(openAccountTransaction.getProductIdentifier());
-        reopenAccountTransaction.setCustomerAccountIdentifier(openAccountTransaction.getCustomerAccountIdentifier());
-        reopenAccountTransaction.setCustomerIdentifier(openAccountTransaction.getCustomerIdentifier());
-        reopenAccountTransaction.setClerk(TEST_USER);
-        reopenAccountTransaction.setAmount(commonAmount);
-
-        super.testSubject.post(teller.getCode(), reopenAccountTransaction);
-    }
-
-    @Test
-    public void shouldProcessRepayment() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction repaymentTransaction =  new TellerTransaction();
-        repaymentTransaction.setTransactionType(ServiceConstants.TX_REPAYMENT);
-        repaymentTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        repaymentTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        repaymentTransaction.setProductCaseIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        repaymentTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        repaymentTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        repaymentTransaction.setClerk(TEST_USER);
-        repaymentTransaction.setAmount(BigDecimal.valueOf(246.80D));
-
-        final Account account = new Account();
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(repaymentTransaction.getCustomerAccountIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), repaymentTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(), "CONFIRM", null);
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/transactions/" + repaymentTransaction.getIdentifier())
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Process Repayment").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test
-    public void shouldProcessCheque() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction chequeTransaction =  new TellerTransaction();
-        chequeTransaction.setTransactionType(ServiceConstants.TX_CHEQUE);
-        chequeTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        chequeTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setProductCaseIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setClerk(TEST_USER);
-        chequeTransaction.setAmount(BigDecimal.valueOf(246.80D));
-
-        final MICR micr = new MICR();
-        micr.setChequeNumber("0011");
-        micr.setBranchSortCode("08154711");
-        micr.setAccountNumber("4711");
-
-        Mockito
-                .doAnswer(invocation -> {
-                    final Account mockedAccount = new Account();
-                    mockedAccount.setBalance(2000.00D);
-                    mockedAccount.setState(Account.State.OPEN.name());
-                    return Optional.of(mockedAccount);
-                })
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(micr.getAccountNumber()));
-
-        final Cheque cheque = new Cheque();
-        cheque.setMicr(micr);
-        cheque.setDrawee("whatever Bank");
-        cheque.setDrawer("Jane Doe");
-        cheque.setPayee("John Doe");
-        cheque.setDateIssued(DateConverter.toIsoString(LocalDate.now(Clock.systemUTC())));
-        cheque.setAmount(BigDecimal.valueOf(246.80D));
-        cheque.setOpenCheque(Boolean.FALSE);
-        chequeTransaction.setCheque(cheque);
-
-        Mockito
-                .doAnswer(invocation -> {
-                    final Account mockedAccount = new Account();
-                    mockedAccount.setState(Account.State.OPEN.name());
-                    return Optional.of(mockedAccount);
-                })
-                .when(super.accountingServiceSpy).findAccount(chequeTransaction.getCustomerAccountIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), chequeTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(),
-                "CONFIRM", null);
-
-        Assert.assertTrue(
-                super.eventRecorder.wait(EventConstants.CONFIRM_TRANSACTION,
-                        tellerTransactionCosts.getTellerTransactionIdentifier())
-        );
-
-        this.mockMvc.perform(post(path + "/teller/" + teller.getCode() + "/transactions/" + chequeTransaction.getIdentifier())
-                .contentType(MediaType.APPLICATION_JSON_VALUE)
-                .content(teller.getCode() + " Processed Cheque").accept(MediaType.APPLICATION_JSON_VALUE))
-                .andExpect(status().is4xxClientError());
-    }
-
-    @Test(expected = TellerTransactionValidationException.class)
-    public void shouldNotProcessChequeAlreadyUsed() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction chequeTransaction =  new TellerTransaction();
-        chequeTransaction.setTransactionType(ServiceConstants.TX_CHEQUE);
-        chequeTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        chequeTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setProductCaseIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        chequeTransaction.setClerk(TEST_USER);
-        chequeTransaction.setAmount(BigDecimal.valueOf(246.80D));
-
-        final MICR micr = new MICR();
-        micr.setChequeNumber("0012");
-        micr.setBranchSortCode("08154711");
-        micr.setAccountNumber("4711");
-
-        Mockito
-                .doAnswer(invocation -> {
-                    final Account mockedAccount = new Account();
-                    mockedAccount.setBalance(1000.00D);
-                    mockedAccount.setState(Account.State.OPEN.name());
-                    return Optional.of(mockedAccount);
-                })
-                .when(super.accountingServiceSpy).findAccount(Matchers.eq(micr.getAccountNumber()));
-
-        final Cheque cheque = new Cheque();
-        cheque.setMicr(micr);
-        cheque.setDrawee("whatever Bank");
-        cheque.setDrawer("Jane Doe");
-        cheque.setPayee("John Doe");
-        cheque.setDateIssued(DateConverter.toIsoString(LocalDate.now(Clock.systemUTC())));
-        cheque.setAmount(BigDecimal.valueOf(246.80D));
-        cheque.setOpenCheque(Boolean.FALSE);
-        chequeTransaction.setCheque(cheque);
-
-        Mockito
-                .doAnswer(invocation -> {
-                    final Account mockedAccount = new Account();
-                    mockedAccount.setState(Account.State.OPEN.name());
-                    return Optional.of(mockedAccount);
-                })
-                .when(super.accountingServiceSpy).findAccount(chequeTransaction.getCustomerAccountIdentifier());
-
-        super.testSubject.post(teller.getCode(), chequeTransaction);
-
-        super.testSubject.post(teller.getCode(), chequeTransaction);
-    }
-
-    @Test(expected = TransactionProcessingException.class)
-    public void shouldNotWithdrawExcludingCharges() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_WITHDRAWAL);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.valueOf(2000.00D));
-
-        final Account account = new Account();
-        account.setBalance(2000.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-
-        final Charge charge = new Charge();
-        charge.setAmount(BigDecimal.valueOf(15.00D));
-        Mockito.doAnswer(invocation -> Lists.newArrayList(charge))
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.any(TellerTransaction.class));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(), "CONFIRM", null);
-    }
-
-    @Test
-    public void shouldWithdrawIncludingCharges() throws Exception {
-        final Teller teller = this.prepareTeller();
-
-        final UnlockDrawerCommand unlockDrawerCommand = new UnlockDrawerCommand();
-        unlockDrawerCommand.setEmployeeIdentifier(TEST_USER);
-        unlockDrawerCommand.setPassword(teller.getPassword());
-
-        super.testSubject.unlockDrawer(teller.getCode(), unlockDrawerCommand);
-
-        super.eventRecorder.wait(EventConstants.AUTHENTICATE_TELLER, teller.getCode());
-
-        final TellerTransaction tellerTransaction =  new TellerTransaction();
-        tellerTransaction.setTransactionType(ServiceConstants.TX_CASH_WITHDRAWAL);
-        tellerTransaction.setTransactionDate(DateConverter.toIsoString(LocalDateTime.now(Clock.systemUTC())));
-        tellerTransaction.setProductIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerAccountIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setCustomerIdentifier(RandomStringUtils.randomAlphanumeric(32));
-        tellerTransaction.setClerk(TEST_USER);
-        tellerTransaction.setAmount(BigDecimal.valueOf(2000.00D));
-
-        final Account account = new Account();
-        account.setBalance(2000.00D);
-        account.setState(Account.State.OPEN.name());
-        Mockito.doAnswer(invocation -> Optional.of(account))
-                .when(super.accountingServiceSpy).findAccount(tellerTransaction.getCustomerAccountIdentifier());
-
-        final Charge charge = new Charge();
-        charge.setAmount(BigDecimal.valueOf(15.00D));
-        Mockito.doAnswer(invocation -> Lists.newArrayList(charge))
-                .when(super.depositAccountManagementServiceSpy).getCharges(Matchers.any(TellerTransaction.class));
-        Mockito.doAnswer(invocation -> Collections.emptyList())
-                .when(super.depositAccountManagementServiceSpy).fetchProductInstances(tellerTransaction.getCustomerIdentifier());
-
-        final TellerTransactionCosts tellerTransactionCosts = super.testSubject.post(teller.getCode(), tellerTransaction);
-
-        super.testSubject.confirm(teller.getCode(), tellerTransactionCosts.getTellerTransactionIdentifier(), "CONFIRM", "included");
-    }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/listener/MigrationEventListener.java b/service/src/test/java/org/apache/fineract/cn/teller/listener/MigrationEventListener.java
deleted file mode 100644
index 2f47705..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/listener/MigrationEventListener.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller.listener;
-
-import org.apache.fineract.cn.lang.config.TenantHeaderFilter;
-import org.apache.fineract.cn.teller.AbstractTellerTest;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.test.listener.EventRecorder;
-import org.slf4j.Logger;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Qualifier;
-import org.springframework.jms.annotation.JmsListener;
-import org.springframework.messaging.handler.annotation.Header;
-import org.springframework.stereotype.Component;
-
-@Component
-public class MigrationEventListener {
-
-  private final Logger logger;
-  private final EventRecorder eventRecorder;
-
-  @Autowired
-  public MigrationEventListener(@Qualifier(AbstractTellerTest.LOGGER_NAME) final Logger logger,
-                                final EventRecorder eventRecorder) {
-    super();
-    this.logger = logger;
-    this.eventRecorder = eventRecorder;
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_INITIALIZE,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onInitialize(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                           final String payload) {
-    this.logger.debug("Service initialized.");
-    this.eventRecorder.event(tenant, EventConstants.INITIALIZE, payload, String.class);
-  }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/listener/TellerEventListener.java b/service/src/test/java/org/apache/fineract/cn/teller/listener/TellerEventListener.java
deleted file mode 100644
index a4d2b69..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/listener/TellerEventListener.java
+++ /dev/null
@@ -1,142 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller.listener;
-
-import org.apache.fineract.cn.lang.config.TenantHeaderFilter;
-import org.apache.fineract.cn.teller.AbstractTellerTest;
-import org.apache.fineract.cn.teller.api.v1.EventConstants;
-import org.apache.fineract.cn.test.listener.EventRecorder;
-import org.slf4j.Logger;
-import org.springframework.beans.factory.annotation.Qualifier;
-import org.springframework.jms.annotation.JmsListener;
-import org.springframework.messaging.handler.annotation.Header;
-import org.springframework.stereotype.Component;
-
-@Component
-public class TellerEventListener {
-
-  private final Logger logger;
-  private final EventRecorder eventRecorder;
-
-  public TellerEventListener(@Qualifier(AbstractTellerTest.LOGGER_NAME) final Logger logger,
-                             final EventRecorder eventRecorder) {
-    super();
-    this.logger = logger;
-    this.eventRecorder = eventRecorder;
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_POST_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onCreate(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                           final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.POST_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_PUT_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onChange(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                           final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.PUT_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_OPEN_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onOpen(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                       final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.OPEN_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_CLOSE_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onClose(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                     final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.CLOSE_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_AUTHENTICATE_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onAuthenticate(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                      final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.AUTHENTICATE_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_PAUSE_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onPause(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                             final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.PAUSE_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_CONFIRM_TRANSACTION,
-      subscription = EventConstants.DESTINATION
-  )
-  public void confirmTransaction(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                      final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.CONFIRM_TRANSACTION, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_DELETE_TELLER,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onDeleteTeller(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                             final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.DELETE_TELLER, payload, String.class);
-  }
-
-  @JmsListener(
-      destination = EventConstants.DESTINATION,
-      selector = EventConstants.SELECTOR_SAVE_DENOMINATION,
-      subscription = EventConstants.DESTINATION
-  )
-  public void onSaveDenomination(@Header(TenantHeaderFilter.TENANT_HEADER) final String tenant,
-                                 final String payload) {
-    this.logger.debug("Teller {} created.", payload);
-    this.eventRecorder.event(tenant, EventConstants.SAVE_DENOMINATION, payload, String.class);
-  }
-}
diff --git a/service/src/test/java/org/apache/fineract/cn/teller/util/TellerGenerator.java b/service/src/test/java/org/apache/fineract/cn/teller/util/TellerGenerator.java
deleted file mode 100644
index 483830c..0000000
--- a/service/src/test/java/org/apache/fineract/cn/teller/util/TellerGenerator.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.fineract.cn.teller.util;
-
-import org.apache.commons.lang3.RandomStringUtils;
-import org.apache.fineract.cn.teller.api.v1.domain.Teller;
-
-import java.math.BigDecimal;
-
-public class TellerGenerator {
-
-  public TellerGenerator() {
-    super();
-  }
-
-  public static Teller createRandomTeller() {
-    final Teller teller = new Teller();
-    teller.setCode(RandomStringUtils.randomAlphanumeric(32));
-    teller.setPassword(RandomStringUtils.randomAlphanumeric(12));
-    teller.setTellerAccountIdentifier(RandomStringUtils.randomAlphanumeric(34));
-    teller.setVaultAccountIdentifier(RandomStringUtils.randomAlphanumeric(34));
-    teller.setChequesReceivableAccount(RandomStringUtils.randomAlphanumeric(34));
-    teller.setCashOverShortAccount(RandomStringUtils.randomAlphanumeric(34));
-    teller.setCashdrawLimit(BigDecimal.valueOf(10000L));
-
-    return teller;
-  }
-}