Documentation updates

This commit is contained in:
James Agnew 2015-07-28 14:47:58 -04:00
parent f1563f0174
commit 27a1d68d5f
2 changed files with 5 additions and 5 deletions

View File

@ -360,10 +360,6 @@ public class QuestionnaireAnswersValidator extends BaseValidator {
} }
} }
if (!found) {
System.out.println(FhirContext.forDstu2Hl7Org().newXmlParser().setPrettyPrint(true).encodeResourceToString(valueSet));
}
rule(theErrors, IssueType.BUSINESSRULE, thePathStack, found, "Question with linkId[{0}] has answer with system[{1}] and code[{2}] but this is not a valid answer for ValueSet[{3}]", rule(theErrors, IssueType.BUSINESSRULE, thePathStack, found, "Question with linkId[{0}] has answer with system[{1}] and code[{2}] but this is not a valid answer for ValueSet[{3}]",
linkId, coding.getSystem(), coding.getCode(), optionsRef); linkId, coding.getSystem(), coding.getCode(), optionsRef);
} }

View File

@ -184,7 +184,11 @@
this address into their URL bar, they will get nice formatted HTML back with a human readable version this address into their URL bar, they will get nice formatted HTML back with a human readable version
of the content. This is helpful for testers. of the content. This is helpful for testers.
</p> </p>
<p>
To see an example of how this looks, see our demo server using the following example
query:
<a href="http://fhirtest.uhn.ca/baseDstu2/Patient/">http://fhirtest.uhn.ca/baseDstu2/Patient</a>
</p>
<p> <p>
The following example shows how to register this interceptor within The following example shows how to register this interceptor within
a FHIR RESTful server. a FHIR RESTful server.