From 43e32e7b052600fc7ebd675a7a6b32bab5b6f992 Mon Sep 17 00:00:00 2001 From: awudzins Date: Tue, 18 Feb 2020 13:13:12 +0100 Subject: Add configuration reading mechanism for CMP Server Issue-ID: AAF-997 Signed-off-by: adamwudzinski Change-Id: I66ca48b019544f970fb1db18236a093cae28b2aa --- certService/src/test/resources/cmpServers.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 certService/src/test/resources/cmpServers.json (limited to 'certService/src/test/resources') diff --git a/certService/src/test/resources/cmpServers.json b/certService/src/test/resources/cmpServers.json new file mode 100644 index 00000000..ee9e72b9 --- /dev/null +++ b/certService/src/test/resources/cmpServers.json @@ -0,0 +1,24 @@ +{ + "cmpv2Servers": [ + { + "caName": "TEST", + "url": "http://127.0.0.1/ejbca/publicweb/cmp/cmp", + "issuerDN": "CN=ManagementCA", + "caMode": "CLIENT", + "authentication": { + "iak": "xxx", + "rv": "yyy" + } + }, + { + "caName": "TEST2", + "url": "http://127.0.0.1/ejbca/publicweb/cmp/cmpRA", + "issuerDN": "CN=ManagementCA2", + "caMode": "RA", + "authentication": { + "iak": "xxx", + "rv": "yyy" + } + } + ] +} \ No newline at end of file -- cgit 1.2.3-korg