change location of dev server
This commit is contained in:
parent
4983b0122c
commit
fcd1d1494a
|
@ -48,7 +48,7 @@ import java.io.FileOutputStream;
|
|||
|
||||
public class Test {
|
||||
public final static String DEF_TS_SERVER = "http://fhir-dev.healthintersections.com.au/open";
|
||||
public final static String DEV_TS_SERVER = "http://local.fhir.org:960/open";
|
||||
public final static String DEV_TS_SERVER = "http://local.fhir.org:8080/open";
|
||||
|
||||
|
||||
public static final String DEF_PATH = "c:\\work\\org.hl7.fhir\\build\\implementations\\java\\org.hl7.fhir.convertors\\samples\\";
|
||||
|
|
|
@ -78,7 +78,7 @@ import java.util.*;
|
|||
|
||||
public class ArgonautConverter extends ConverterBase {
|
||||
// public final static String DEF_TS_SERVER = "http://fhir-dev.healthintersections.com.au/open";
|
||||
public final static String DEV_TS_SERVER = "http://local.fhir.org:960/open";
|
||||
public final static String DEV_TS_SERVER = "http://local.fhir.org:8080/open";
|
||||
public static final String UCUM_PATH = "c:\\work\\org.hl7.fhir\\build\\implementations\\java\\org.hl7.fhir.convertors\\samples\\ucum-essence.xml";
|
||||
public static final String SRC_PATH = "c:\\work\\org.hl7.fhir\\build\\publish\\";
|
||||
private static final String DEFAULT_ID_SPACE = "urn:uuid:e8e06b15-0f74-4b8e-b5e2-609dae7119dc";
|
||||
|
|
|
@ -92,7 +92,7 @@ public class TerminologyClientFactory {
|
|||
return url;
|
||||
if (url.startsWith("http://tx.fhir.org"))
|
||||
return Utilities.pathURL(url, term);
|
||||
if (url.equals("http://local.fhir.org:960"))
|
||||
if (url.equals("http://local.fhir.org:8080"))
|
||||
return Utilities.pathURL(url, term);
|
||||
return url;
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ import java.util.Map.Entry;
|
|||
*/
|
||||
public class FilesystemPackageCacheManager extends BasePackageCacheManager implements IPackageCacheManager {
|
||||
|
||||
// private static final String SECONDARY_SERVER = "http://local.fhir.org:960/packages";
|
||||
// private static final String SECONDARY_SERVER = "http://local.fhir.org:8080/packages";
|
||||
public static final String PACKAGE_REGEX = "^[a-zA-Z][A-Za-z0-9\\_\\-]*(\\.[A-Za-z0-9\\_\\-]+)+$";
|
||||
public static final String PACKAGE_VERSION_REGEX = "^[A-Za-z][A-Za-z0-9\\_\\-]*(\\.[A-Za-z0-9\\_\\-]+)+\\#[A-Za-z0-9\\-\\_\\$]+(\\.[A-Za-z0-9\\-\\_\\$]+)*$";
|
||||
public static final String PACKAGE_VERSION_REGEX_OPT = "^[A-Za-z][A-Za-z0-9\\_\\-]*(\\.[A-Za-z0-9\\_\\-]+)+(\\#[A-Za-z0-9\\-\\_]+(\\.[A-Za-z0-9\\-\\_]+)*)?$";
|
||||
|
|
|
@ -13,7 +13,7 @@ public class CachingPackageClientTests {
|
|||
|
||||
private static final String SERVER1 = "http://packages.fhir.org";
|
||||
private static final String SERVER2 = "https://packages2.fhir.org/packages";
|
||||
// private static final String SERVER2 = "http://local.fhir.org:960/packages";
|
||||
// private static final String SERVER2 = "http://local.fhir.org:8080/packages";
|
||||
|
||||
@Test
|
||||
public void testExists() throws IOException {
|
||||
|
|
|
@ -22,7 +22,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
public class ValidationEngineTests {
|
||||
|
||||
public static final String DEF_TX = "http://tx.fhir.org";
|
||||
// public static final String DEF_TX = "http://local.fhir.org:960";
|
||||
// public static final String DEF_TX = "http://local.fhir.org:8080";
|
||||
|
||||
public static boolean inbuild;
|
||||
|
||||
|
|
Loading…
Reference in New Issue