mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-02 09:29:13 +00:00
fix default server settings
This commit is contained in:
parent
fbaff6cdb0
commit
907126703f
@ -147,14 +147,14 @@ public class FhirSettings {
|
|||||||
public static String getTxFhirDevelopment() {
|
public static String getTxFhirDevelopment() {
|
||||||
getInstance();
|
getInstance();
|
||||||
return instance.fhirSettings.getTxFhirDevelopment() == null
|
return instance.fhirSettings.getTxFhirDevelopment() == null
|
||||||
? FhirSettingsPOJO.TX_SERVER_PROD
|
? FhirSettingsPOJO.TX_SERVER_DEV
|
||||||
: instance.fhirSettings.getTxFhirDevelopment();
|
: instance.fhirSettings.getTxFhirDevelopment();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getTxFhirLocal() {
|
public static String getTxFhirLocal() {
|
||||||
getInstance();
|
getInstance();
|
||||||
return instance.fhirSettings.getTxFhirLocal() == null
|
return instance.fhirSettings.getTxFhirLocal() == null
|
||||||
? FhirSettingsPOJO.TX_SERVER_PROD
|
? FhirSettingsPOJO.TX_SERVER_LOCAL
|
||||||
: instance.fhirSettings.getTxFhirLocal();
|
: instance.fhirSettings.getTxFhirLocal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user