@@ -24,7 +24,7 @@ public class DownloadAllowListFromTtpViaMedic1ExampleStarter
24
24
private static final Logger logger = LoggerFactory .getLogger (DownloadAllowListFromTtpViaMedic1ExampleStarter .class );
25
25
26
26
private static final String ALLOW_LIST_FHIR_BASE_URL = ConstantsExampleStarters .TTP_FHIR_BASE_URL ;
27
- private static final Map <String , String > REQUESTER_RECIPIENT = Map .of (
27
+ private static final Map <String , String > MEDIC_IDENTIFIER_URL = Map .of (
28
28
ConstantsExampleStarters .NAMINGSYSTEM_DSF_ORGANIZATION_IDENTIFIER_VALUE_MEDIC_1 ,
29
29
ConstantsExampleStarters .MEDIC_1_FHIR_BASE_URL ,
30
30
ConstantsExampleStarters .NAMINGSYSTEM_DSF_ORGANIZATION_IDENTIFIER_VALUE_MEDIC_2 ,
@@ -39,10 +39,10 @@ public class DownloadAllowListFromTtpViaMedic1ExampleStarter
39
39
public static void main (String [] args ) throws Exception
40
40
{
41
41
ExampleStarter starter = ExampleStarter .forServer (args ,
42
- REQUESTER_RECIPIENT .entrySet ().iterator ().next ().getValue ());
42
+ MEDIC_IDENTIFIER_URL .entrySet ().iterator ().next ().getValue ());
43
43
IdType allowList = allowList (starter );
44
44
45
- REQUESTER_RECIPIENT .forEach ((identifier , url ) -> start (args , allowList , identifier , url ));
45
+ MEDIC_IDENTIFIER_URL .forEach ((identifier , url ) -> start (args , allowList , identifier , url ));
46
46
}
47
47
48
48
private static void start (String [] args , IdType allowList , String identifier , String url )
0 commit comments