Skip to content

Commit 6d74eef

Browse files
committed
adds support for client certificate path and password environment variables
1 parent a38ec5f commit 6d74eef

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

dsf-bpe-process-feasibility/src/test/java/org/highmed/dsf/bpe/start/RequestSimpleFeasibilityFromMedicsViaMedic1ExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747

4848
public class RequestSimpleFeasibilityFromMedicsViaMedic1ExampleStarter
4949
{
50-
// args[0] the path to the client-certificate
50+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
5151
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
52-
// args[1] the password of the client-certificate
52+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
5353
// password
5454
public static void main(String[] args) throws Exception
5555
{

dsf-bpe-process-local-services/src/test/java/org/highmed/dsf/bpe/start/LocalServicesMedic1ExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public class LocalServicesMedic1ExampleStarter
3333
private static boolean NEEDS_CONSENT_CHECK = true;
3434
private static boolean NEEDS_RECORD_LINKAGE = true;
3535

36-
// args[0] the path to the client-certificate
36+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
3737
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
38-
// args[1] the password of the client-certificate
38+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
3939
// password
4040
public static void main(String[] args) throws Exception
4141
{

dsf-bpe-process-ping/src/test/java/org/highmed/dsf/bpe/start/Ping3MedicFromTtpExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
public class Ping3MedicFromTtpExampleStarter
2121
{
22-
// args[0] the path to the client-certificate
22+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
2323
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
24-
// args[1] the password of the client-certificate
24+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
2525
// password
2626
public static void main(String[] args) throws Exception
2727
{

dsf-bpe-process-update-allow-list/src/test/java/org/highmed/dsf/bpe/start/DownloadAllowListFromTtpViaMedic1ExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
public class DownloadAllowListFromTtpViaMedic1ExampleStarter
3030
{
31-
// args[0] the path to the client-certificate
31+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
3232
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
33-
// args[1] the password of the client-certificate
33+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
3434
// password
3535
public static void main(String[] args) throws Exception
3636
{

dsf-bpe-process-update-allow-list/src/test/java/org/highmed/dsf/bpe/start/UpdateAllowList3MedicTtpExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
public class UpdateAllowList3MedicTtpExampleStarter
2121
{
22-
// args[0] the path to the client-certificate
22+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
2323
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
24-
// args[1] the password of the client-certificate
24+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
2525
// password
2626
public static void main(String[] args) throws Exception
2727
{

dsf-bpe-process-update-resources/src/test/java/org/highmed/dsf/bpe/start/UpdateResource3MedicTtpExampleStarter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
public class UpdateResource3MedicTtpExampleStarter
3030
{
31-
// args[0] the path to the client-certificate
31+
// Environment variable "DSF_CLIENT_CERTIFICATE_PATH" or args[0]: the path to the client-certificate
3232
// highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12
33-
// args[1] the password of the client-certificate
33+
// Environment variable "DSF_CLIENT_CERTIFICATE_PASSWORD" or args[1]: the password of the client-certificate
3434
// password
3535
public static void main(String[] args) throws Exception
3636
{

0 commit comments

Comments
 (0)