Merge remote-tracking branch 'remotes/origin/master' into ks-subscription-delivery-queue-configurable-name
This commit is contained in:
commit
ed195f8dab
|
@ -87,11 +87,13 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
|
|||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected IHttpRequest createHttpRequest() {
|
||||
IHttpRequest retVal = createHttpRequest((HttpEntity)null);
|
||||
return retVal;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected IHttpRequest createHttpRequest(byte[] content) {
|
||||
/*
|
||||
* Note: Be careful about changing which constructor we use for
|
||||
|
@ -109,6 +111,7 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
|
|||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected IHttpRequest createHttpRequest(Map<String, List<String>> theParams) {
|
||||
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
|
||||
for (Entry<String, List<String>> nextParam : theParams.entrySet()) {
|
||||
|
@ -124,6 +127,7 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
|
|||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected IHttpRequest createHttpRequest(String theContents) {
|
||||
/*
|
||||
* We aren't using a StringEntity here because the constructors
|
||||
|
|
|
@ -76,6 +76,7 @@ public class LoggingInterceptor implements IClientInterceptor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Hook(Pointcut.CLIENT_REQUEST)
|
||||
public void interceptRequest(IHttpRequest theRequest) {
|
||||
if (myLogRequestSummary) {
|
||||
|
@ -101,6 +102,7 @@ public class LoggingInterceptor implements IClientInterceptor {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Hook(Pointcut.CLIENT_RESPONSE)
|
||||
public void interceptResponse(IHttpResponse theResponse) throws IOException {
|
||||
if (myLogResponseSummary) {
|
||||
|
|
|
@ -35,10 +35,12 @@ public class IgPackParserDstu2 extends BaseIgPackParser<IValidationSupport> {
|
|||
super(massage(theCtx));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) {
|
||||
return new IgPackValidationSupportDstu2(theIgResources);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected FhirVersionEnum provideExpectedVersion() {
|
||||
return FhirVersionEnum.DSTU2_HL7ORG;
|
||||
}
|
||||
|
|
|
@ -37,10 +37,12 @@ public class IgPackParserDstu3 extends BaseIgPackParser<IValidationSupport> {
|
|||
super(theCtx);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) {
|
||||
return new IgPackValidationSupportDstu3(theIgResources);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected FhirVersionEnum provideExpectedVersion() {
|
||||
return FhirVersionEnum.DSTU3;
|
||||
}
|
||||
|
|
|
@ -41,11 +41,13 @@ public class WebsocketWithCriteriaDstu2Test extends BaseResourceProviderDstu2Tes
|
|||
private WebSocketClient myWebSocketClient;
|
||||
private SocketImplementation mySocketImplementation;
|
||||
|
||||
@Override
|
||||
@After
|
||||
public void after() throws Exception {
|
||||
super.after();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
super.before();
|
||||
|
|
|
@ -58,6 +58,7 @@ public class WebsocketWithSubscriptionIdDstu2Test extends BaseResourceProviderDs
|
|||
@Autowired
|
||||
private SubscriptionTestUtil mySubscriptionTestUtil;
|
||||
|
||||
@Override
|
||||
@After
|
||||
public void after() throws Exception {
|
||||
super.after();
|
||||
|
@ -70,6 +71,7 @@ public class WebsocketWithSubscriptionIdDstu2Test extends BaseResourceProviderDs
|
|||
myWebSocketClient.stop();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
super.before();
|
||||
|
|
|
@ -219,7 +219,7 @@ public class SearchMethodBinding extends BaseResourceReturningMethodBinding {
|
|||
}
|
||||
}
|
||||
for (String next : theRequest.getParameters().keySet()) {
|
||||
if (next.startsWith("_") && !SPECIAL_SEARCH_PARAMS.contains(next)) {
|
||||
if (next.startsWith("_") && !SPECIAL_SEARCH_PARAMS.contains(truncModifierPart(next))) {
|
||||
methodParamsTemp.add(next);
|
||||
}
|
||||
}
|
||||
|
@ -235,6 +235,13 @@ public class SearchMethodBinding extends BaseResourceReturningMethodBinding {
|
|||
return true;
|
||||
}
|
||||
|
||||
private String truncModifierPart(String param) {
|
||||
int indexOfSeparator = param.indexOf(":");
|
||||
if (indexOfSeparator != -1) {
|
||||
return param.substring(0, indexOfSeparator);
|
||||
}
|
||||
return param;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IBundleProvider invokeServer(IRestfulServer<?> theServer, RequestDetails theRequest, Object[] theMethodParams) throws InvalidRequestException, InternalErrorException {
|
||||
|
|
|
@ -1021,6 +1021,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return Utilities.appendSlash(base) + type + "/" + id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BestPracticeWarningLevel getBasePracticeWarningLevel() {
|
||||
return bpWarnings;
|
||||
}
|
||||
|
@ -1416,6 +1417,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
this.anyExtensionsAllowed = anyExtensionsAllowed;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) {
|
||||
bpWarnings = value;
|
||||
}
|
||||
|
@ -1429,10 +1431,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
this.suppressLoincSnomedMessages = suppressLoincSnomedMessages;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IdStatus getResourceIdRule() {
|
||||
return resourceIdRule;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setResourceIdRule(IdStatus resourceIdRule) {
|
||||
this.resourceIdRule = resourceIdRule;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@ public class ContainedDt extends BaseContainedDt {
|
|||
@Child(name = "resource", type = IResource.class, order = 0, min = 0, max = Child.MAX_UNLIMITED)
|
||||
private List<IResource> myContainedResources;
|
||||
|
||||
@Override
|
||||
public List<IResource> getContainedResources() {
|
||||
if (myContainedResources == null) {
|
||||
myContainedResources = new ArrayList<IResource>();
|
||||
|
|
|
@ -114,6 +114,7 @@ public class NarrativeDt extends BaseNarrativeDt {
|
|||
* The status of the narrative - whether it's entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public BoundCodeDt<NarrativeStatusEnum> getStatus() {
|
||||
if (myStatus == null) {
|
||||
myStatus = new BoundCodeDt<NarrativeStatusEnum>(NarrativeStatusEnum.VALUESET_BINDER);
|
||||
|
@ -170,6 +171,7 @@ public class NarrativeDt extends BaseNarrativeDt {
|
|||
* The actual narrative content, a stripped down version of XHTML
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public XhtmlDt getDiv() {
|
||||
if (myDiv == null) {
|
||||
myDiv = new XhtmlDt();
|
||||
|
|
|
@ -162,6 +162,7 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public IdDt getReference() {
|
||||
if (myReference == null) {
|
||||
myReference = new IdDt();
|
||||
|
@ -183,6 +184,7 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public ResourceReferenceDt setReference(IdDt theValue) {
|
||||
myReference = theValue;
|
||||
return this;
|
||||
|
@ -196,7 +198,8 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
public ResourceReferenceDt setReference( String theId) {
|
||||
@Override
|
||||
public ResourceReferenceDt setReference(String theId) {
|
||||
myReference = new IdDt(theId);
|
||||
return this;
|
||||
}
|
||||
|
@ -240,7 +243,8 @@ public class ResourceReferenceDt
|
|||
* Plain text narrative that identifies the resource in addition to the resource reference
|
||||
* </p>
|
||||
*/
|
||||
public ResourceReferenceDt setDisplay( String theString) {
|
||||
@Override
|
||||
public ResourceReferenceDt setDisplay(String theString) {
|
||||
myDisplay = new StringDt(theString);
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -313,10 +313,12 @@ public abstract class BaseResource extends BaseElement implements IResource {
|
|||
myContained = theContained;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(IdDt theId) {
|
||||
myId = theId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResource setId(IIdType theId) {
|
||||
if (theId instanceof IdDt) {
|
||||
myId = (IdDt) theId;
|
||||
|
@ -328,6 +330,7 @@ public abstract class BaseResource extends BaseElement implements IResource {
|
|||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResource setId(String theId) {
|
||||
if (theId == null) {
|
||||
myId = null;
|
||||
|
|
|
@ -142,6 +142,7 @@ public class FhirContextDstu2Test {
|
|||
final CountDownLatch allDone = new CountDownLatch(numThreads);
|
||||
for (final Runnable submittedTestRunnable : runnables) {
|
||||
threadPool.submit(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
allExecutorThreadsReady.countDown();
|
||||
try {
|
||||
|
|
|
@ -17,6 +17,7 @@ public class CustomMedicationOrderDstu2 extends MedicationOrder {
|
|||
@Child(name = "medication", order = Child.REPLACE_PARENT, min = 1, max = 1, summary = false, modifier = false, type = { Medication.class })
|
||||
private ResourceReferenceDt myMedication;
|
||||
|
||||
@Override
|
||||
public ResourceReferenceDt getMedication() {
|
||||
return myMedication;
|
||||
}
|
||||
|
|
|
@ -7,10 +7,7 @@ import ca.uhn.fhir.model.dstu2.resource.Bundle;
|
|||
import ca.uhn.fhir.model.dstu2.resource.Bundle.Link;
|
||||
import ca.uhn.fhir.model.dstu2.resource.Patient;
|
||||
import ca.uhn.fhir.model.primitive.InstantDt;
|
||||
import ca.uhn.fhir.rest.annotation.Create;
|
||||
import ca.uhn.fhir.rest.annotation.RequiredParam;
|
||||
import ca.uhn.fhir.rest.annotation.ResourceParam;
|
||||
import ca.uhn.fhir.rest.annotation.Search;
|
||||
import ca.uhn.fhir.rest.annotation.*;
|
||||
import ca.uhn.fhir.rest.api.Constants;
|
||||
import ca.uhn.fhir.rest.api.EncodingEnum;
|
||||
import ca.uhn.fhir.rest.api.MethodOutcome;
|
||||
|
@ -41,6 +38,7 @@ import org.junit.Before;
|
|||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
@ -407,6 +405,70 @@ public class SearchDstu2Test {
|
|||
assertEquals("Patient", ourLastRef.getResourceType());
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies proper method binding to handle special search names(_id:[modifier], _language:[modifier])
|
||||
*/
|
||||
@Test
|
||||
public void testSearchByIdExact() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id:exact=aaa&reference=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("idProvider", ourLastMethod);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByQualifiedIdQualifiedString() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id:exact=aaa&stringParam:exact=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("stringParam:true:true", ourLastMethod);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByQualifiedString() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id=aaa&stringParam:exact=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("stringParam:false:true", ourLastMethod);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByQualifiedIdString() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id:exact=aaa&stringParam=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("stringParam:true:false", ourLastMethod);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByIdString() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id=aaa&stringParam=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("stringParam:false:false", ourLastMethod);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testSearchWhitelist01Failing() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_query=searchWhitelist01&ref=value");
|
||||
|
@ -439,12 +501,13 @@ public class SearchDstu2Test {
|
|||
ourServer = new Server(0);
|
||||
|
||||
DummyPatientResourceProvider patientProvider = new DummyPatientResourceProvider();
|
||||
DummyPatientResourceNoIdProvider patientResourceNoIdProviderProvider = new DummyPatientResourceNoIdProvider();
|
||||
|
||||
ServletHandler proxyHandler = new ServletHandler();
|
||||
ourServlet = new RestfulServer(ourCtx);
|
||||
ourServlet.setPagingProvider(new FifoMemoryPagingProvider(10));
|
||||
ourServlet.setDefaultResponseEncoding(EncodingEnum.XML);
|
||||
ourServlet.setResourceProviders(patientProvider);
|
||||
ourServlet.setResourceProviders(patientResourceNoIdProviderProvider, patientProvider);
|
||||
|
||||
ServletHolder servletHolder = new ServletHolder(ourServlet);
|
||||
proxyHandler.addServletWithMapping(servletHolder, "/*");
|
||||
|
@ -459,6 +522,23 @@ public class SearchDstu2Test {
|
|||
|
||||
}
|
||||
|
||||
public static class DummyPatientResourceNoIdProvider implements IResourceProvider {
|
||||
|
||||
@Override
|
||||
public Class<? extends IResource> getResourceType() {
|
||||
return Patient.class;
|
||||
}
|
||||
|
||||
//@formatter:off
|
||||
@Search()
|
||||
public List<Patient> searchByRef(
|
||||
@RequiredParam(name = "reference") ReferenceParam theParam) {
|
||||
ourLastMethod = "noIdProvider";
|
||||
return Collections.emptyList();
|
||||
}
|
||||
//@formatter:on
|
||||
}
|
||||
|
||||
public static class DummyPatientResourceProvider implements IResourceProvider {
|
||||
|
||||
@Override
|
||||
|
@ -483,6 +563,26 @@ public class SearchDstu2Test {
|
|||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
//@formatter:off
|
||||
@Search()
|
||||
public List<Patient> searchByIdRef(
|
||||
@RequiredParam(name="_id") StringParam id,
|
||||
@OptionalParam(name = "reference") ReferenceParam theParam) {
|
||||
ourLastMethod = "idProvider";
|
||||
return Collections.emptyList();
|
||||
}
|
||||
//@formatter:on
|
||||
|
||||
//@formatter:off
|
||||
@Search()
|
||||
public List<Patient> searchByQualifiedString(
|
||||
@RequiredParam(name="_id") StringParam id,
|
||||
@RequiredParam(name = "stringParam") StringParam stringParam) {
|
||||
ourLastMethod = "stringParam:" + id.isExact() + ":" + stringParam.isExact();
|
||||
return Collections.emptyList();
|
||||
}
|
||||
//@formatter:on
|
||||
|
||||
//@formatter:off
|
||||
@Search()
|
||||
public List<Patient> searchDateAndList(
|
||||
|
|
|
@ -699,21 +699,25 @@ public class JsonLikeParserTest {
|
|||
return super.getAsBoolean();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isObject () {
|
||||
return (nativeValue != null)
|
||||
&& ( (nativeValue instanceof Map) || Map.class.isAssignableFrom(nativeValue.getClass()) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isArray () {
|
||||
return (nativeValue != null)
|
||||
&& ( (nativeValue instanceof List) || List.class.isAssignableFrom(nativeValue.getClass()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isString () {
|
||||
return (nativeValue != null)
|
||||
&& ( (nativeValue instanceof String) || String.class.isAssignableFrom(nativeValue.getClass()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isNumber () {
|
||||
return (nativeValue != null)
|
||||
&& ( (nativeValue instanceof Number) || Number.class.isAssignableFrom(nativeValue.getClass()) );
|
||||
|
@ -724,6 +728,7 @@ public class JsonLikeParserTest {
|
|||
&& ( (nativeValue instanceof Boolean) || Boolean.class.isAssignableFrom(nativeValue.getClass()) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isNull () {
|
||||
return (null == nativeValue);
|
||||
}
|
||||
|
|
|
@ -787,6 +787,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return Utilities.appendSlash(base) + type + "/" + id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BestPracticeWarningLevel getBasePracticeWarningLevel() {
|
||||
return bpWarnings;
|
||||
}
|
||||
|
@ -941,10 +942,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return context.fetchResource(StructureDefinition.class, "http://hl7.org/fhir/StructureDefinition/" + type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IdStatus getResourceIdRule() {
|
||||
return resourceIdRule;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setResourceIdRule(IdStatus resourceIdRule) {
|
||||
this.resourceIdRule = resourceIdRule;
|
||||
}
|
||||
|
@ -1209,6 +1212,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return sd.getSnapshot().getElement().get(0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) {
|
||||
bpWarnings = value;
|
||||
}
|
||||
|
@ -2071,6 +2075,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
this.typeProfile = typeProfile;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equalsDeep(Base other) {
|
||||
if (!super.equalsDeep(other) || !fhirType().equals(other.fhirType()))
|
||||
return false;
|
||||
|
@ -2153,6 +2158,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isPrimitive() {
|
||||
String t = fhirType();
|
||||
return t.equalsIgnoreCase("boolean") || t.equalsIgnoreCase("integer") || t.equalsIgnoreCase("string") || t.equalsIgnoreCase("decimal") || t.equalsIgnoreCase("uri") || t.equalsIgnoreCase("base64Binary") ||
|
||||
|
@ -2188,6 +2194,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String primitiveValue() {
|
||||
return wrapper.getAttribute("value");
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ public class ProfileValidator extends BaseValidator {
|
|||
this.context = context;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean rule(List<ValidationMessage> errors, IssueType type, String path, boolean b, String msg) {
|
||||
String rn = path.contains(".") ? path.substring(0, path.indexOf(".")) : path;
|
||||
return super.rule(errors, type, path, b, msg, "<a href=\""+(rn.toLowerCase())+".html\">"+rn+"</a>: "+Utilities.escapeXml(msg));
|
||||
|
|
|
@ -126,6 +126,7 @@ public class CodingDt
|
|||
* The identification of the code system that defines the meaning of the symbol in the code.
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public UriDt getSystemElement() {
|
||||
if (mySystem == null) {
|
||||
mySystem = new UriDt();
|
||||
|
@ -144,6 +145,7 @@ public class CodingDt
|
|||
* The identification of the code system that defines the meaning of the symbol in the code.
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public String getSystem() {
|
||||
return getSystemElement().getValue();
|
||||
}
|
||||
|
@ -171,7 +173,8 @@ public class CodingDt
|
|||
* The identification of the code system that defines the meaning of the symbol in the code.
|
||||
* </p>
|
||||
*/
|
||||
public CodingDt setSystem( String theUri) {
|
||||
@Override
|
||||
public CodingDt setSystem(String theUri) {
|
||||
mySystem = new UriDt(theUri);
|
||||
return this;
|
||||
}
|
||||
|
@ -248,6 +251,7 @@ public class CodingDt
|
|||
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public CodeDt getCodeElement() {
|
||||
if (myCode == null) {
|
||||
myCode = new CodeDt();
|
||||
|
@ -266,6 +270,7 @@ public class CodingDt
|
|||
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public String getCode() {
|
||||
return getCodeElement().getValue();
|
||||
}
|
||||
|
@ -293,7 +298,8 @@ public class CodingDt
|
|||
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
|
||||
* </p>
|
||||
*/
|
||||
public CodingDt setCode( String theCode) {
|
||||
@Override
|
||||
public CodingDt setCode(String theCode) {
|
||||
myCode = new CodeDt(theCode);
|
||||
return this;
|
||||
}
|
||||
|
@ -309,6 +315,7 @@ public class CodingDt
|
|||
* A representation of the meaning of the code in the system, following the rules of the system
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public StringDt getDisplayElement() {
|
||||
if (myDisplay == null) {
|
||||
myDisplay = new StringDt();
|
||||
|
@ -327,6 +334,7 @@ public class CodingDt
|
|||
* A representation of the meaning of the code in the system, following the rules of the system
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public String getDisplay() {
|
||||
return getDisplayElement().getValue();
|
||||
}
|
||||
|
@ -354,7 +362,8 @@ public class CodingDt
|
|||
* A representation of the meaning of the code in the system, following the rules of the system
|
||||
* </p>
|
||||
*/
|
||||
public CodingDt setDisplay( String theString) {
|
||||
@Override
|
||||
public CodingDt setDisplay(String theString) {
|
||||
myDisplay = new StringDt(theString);
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -104,6 +104,7 @@ public class NarrativeDt extends BaseNarrativeDt {
|
|||
* The actual narrative content, a stripped down version of XHTML
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public XhtmlDt getDiv() {
|
||||
if (myDiv == null) {
|
||||
myDiv = new XhtmlDt();
|
||||
|
|
|
@ -193,6 +193,7 @@ public class QuantityDt
|
|||
* The value of the measured amount. The value includes an implicit precision in the presentation of the value
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public DecimalDt getValueElement() {
|
||||
if (myValue == null) {
|
||||
myValue = new DecimalDt();
|
||||
|
@ -264,7 +265,8 @@ public class QuantityDt
|
|||
* The value of the measured amount. The value includes an implicit precision in the presentation of the value
|
||||
* </p>
|
||||
*/
|
||||
public QuantityDt setValue( java.math.BigDecimal theValue) {
|
||||
@Override
|
||||
public QuantityDt setValue(java.math.BigDecimal theValue) {
|
||||
myValue = new DecimalDt(theValue);
|
||||
return this;
|
||||
}
|
||||
|
@ -280,6 +282,7 @@ public class QuantityDt
|
|||
* How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public BoundCodeDt<QuantityComparatorEnum> getComparatorElement() {
|
||||
if (myComparator == null) {
|
||||
myComparator = new BoundCodeDt<QuantityComparatorEnum>(QuantityComparatorEnum.VALUESET_BINDER);
|
||||
|
@ -406,6 +409,7 @@ public class QuantityDt
|
|||
* The identification of the system that provides the coded form of the unit
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public UriDt getSystemElement() {
|
||||
if (mySystem == null) {
|
||||
mySystem = new UriDt();
|
||||
|
@ -451,7 +455,8 @@ public class QuantityDt
|
|||
* The identification of the system that provides the coded form of the unit
|
||||
* </p>
|
||||
*/
|
||||
public QuantityDt setSystem( String theUri) {
|
||||
@Override
|
||||
public QuantityDt setSystem(String theUri) {
|
||||
mySystem = new UriDt(theUri);
|
||||
return this;
|
||||
}
|
||||
|
@ -467,6 +472,7 @@ public class QuantityDt
|
|||
* A computer processable form of the unit in some unit representation system
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public CodeDt getCodeElement() {
|
||||
if (myCode == null) {
|
||||
myCode = new CodeDt();
|
||||
|
@ -512,7 +518,8 @@ public class QuantityDt
|
|||
* A computer processable form of the unit in some unit representation system
|
||||
* </p>
|
||||
*/
|
||||
public QuantityDt setCode( String theCode) {
|
||||
@Override
|
||||
public QuantityDt setCode(String theCode) {
|
||||
myCode = new CodeDt(theCode);
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -162,6 +162,7 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public IdDt getReference() {
|
||||
if (myReference == null) {
|
||||
myReference = new IdDt();
|
||||
|
@ -183,6 +184,7 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
@Override
|
||||
public ResourceReferenceDt setReference(IdDt theValue) {
|
||||
myReference = theValue;
|
||||
return this;
|
||||
|
@ -196,7 +198,8 @@ public class ResourceReferenceDt
|
|||
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
|
||||
* </p>
|
||||
*/
|
||||
public ResourceReferenceDt setReference( String theId) {
|
||||
@Override
|
||||
public ResourceReferenceDt setReference(String theId) {
|
||||
myReference = new IdDt(theId);
|
||||
return this;
|
||||
}
|
||||
|
@ -240,7 +243,8 @@ public class ResourceReferenceDt
|
|||
* Plain text narrative that identifies the resource in addition to the resource reference
|
||||
* </p>
|
||||
*/
|
||||
public ResourceReferenceDt setDisplay( String theString) {
|
||||
@Override
|
||||
public ResourceReferenceDt setDisplay(String theString) {
|
||||
myDisplay = new StringDt(theString);
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -59,6 +59,7 @@ public class ResourceBlock extends Child {
|
|||
return getClassName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isBlock() {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -116,6 +116,7 @@ public class XMLUtils {
|
|||
impl = getDOMImpl();
|
||||
}
|
||||
|
||||
@Override
|
||||
public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId,
|
||||
String baseURI) {
|
||||
LSInput lsInput = impl.createLSInput();
|
||||
|
|
|
@ -24,6 +24,7 @@ package org.hl7.fhir.dstu2.model;
|
|||
|
||||
public interface IIdType extends IBase {
|
||||
|
||||
@Override
|
||||
boolean isEmpty();
|
||||
|
||||
/**
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -555,6 +555,10 @@
|
|||
<developer>
|
||||
<id>jaferkhan</id>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>CodeAndChoke</id>
|
||||
<name>Long Nguyen</name>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<licenses>
|
||||
|
|
|
@ -296,6 +296,20 @@
|
|||
project has been fixed. Thanks to GitHub user @jaferkhan for the pull
|
||||
request!
|
||||
</action>
|
||||
<action type="add">
|
||||
A docker compose script for the hapi-fhir-jpaserver-starter project was added. Thanks to
|
||||
Long Nguyen for the pull request!
|
||||
</action>
|
||||
<action type="add" issue="1476">
|
||||
A number of overridden methods in the HAPI FHIR codebase did not have the
|
||||
@Override annotation. Thanks to Clayton Bodendein for cleaning this up!
|
||||
</action>
|
||||
<action type"add" issue="1373">
|
||||
Plain server resource providers were not correctly matching methods that
|
||||
had the _id search parameter if a client performed a request using a modifier
|
||||
such as :not or :exact. Thanks to Petro Mykhailyshyn
|
||||
for the pull request!
|
||||
</action>
|
||||
</release>
|
||||
<release version="4.0.3" date="2019-09-03" description="Igloo (Point Release)">
|
||||
<action type="fix">
|
||||
|
|
Loading…
Reference in New Issue