diff --git a/hapi-fhir-base/src/changes/changes.xml b/hapi-fhir-base/src/changes/changes.xml index f40b7d60774a..a0b1410d9e3c 100644 --- a/hapi-fhir-base/src/changes/changes.xml +++ b/hapi-fhir-base/src/changes/changes.xml @@ -6,7 +6,7 @@
this
identifier has the same {@link IdentifierDt#[[#]]#getValue() value}
- * and {@link IdentifierDt#[[#]]#getSystem() system} (as compared by simple equals comparison).
- * Does not compare other values (e.g. {@link IdentifierDt#[[#]]#getUse() use}) or any extensions.
+ * Returns true if this
identifier has the same {@link IdentifierDt#getValue() value}
+ * and {@link IdentifierDt#getSystem() system} (as compared by simple equals comparison).
+ * Does not compare other values (e.g. {@link IdentifierDt#getUse() use}) or any extensions.
*/
public boolean matchesSystemAndValue(BaseIdentifierDt theIdentifier) {
if (theIdentifier == null) {
diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java
index 2d8e66ba506c..05d42adb6502 100644
--- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java
+++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java
@@ -20,7 +20,7 @@
* #L%
*/
-import static org.apache.commons.lang3.StringUtils.isNotBlank;
+import static org.apache.commons.lang3.StringUtils.*;
import java.io.IOException;
import java.io.OutputStreamWriter;
@@ -66,7 +66,6 @@
import ca.uhn.fhir.model.dstu.valueset.IssueSeverityEnum;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.model.primitive.InstantDt;
-import ca.uhn.fhir.model.primitive.StringDt;
import ca.uhn.fhir.parser.IParser;
import ca.uhn.fhir.rest.method.BaseMethodBinding;
import ca.uhn.fhir.rest.method.ConformanceMethodBinding;
@@ -334,7 +333,7 @@ public Object getServerConformanceProvider() {
/**
* Gets the server's name, as exported in conformance profiles exported by the server. This is informational only, but can be helpful to set with something appropriate.
*
- * @see RestfulServer#setServerName(StringDt)
+ * @see RestfulServer#setServerName(String)
*/
public String getServerName() {
return myServerName;
@@ -791,9 +790,7 @@ public void setServerConformanceProvider(Object theServerConformanceProvider) {
}
/**
- * Gets the server's name, as exported in conformance profiles exported by the server. This is informational only, but can be helpful to set with something appropriate.
- *
- * @see RestfulServer#setServerName(StringDt)
+ * Sets the server's name, as exported in conformance profiles exported by the server. This is informational only, but can be helpful to set with something appropriate.
*/
public void setServerName(String theServerName) {
myServerName = theServerName;
diff --git a/hapi-fhir-base/src/site/site.xml b/hapi-fhir-base/src/site/site.xml
index 82cf4a7a5abc..f9e665fc252c 100644
--- a/hapi-fhir-base/src/site/site.xml
+++ b/hapi-fhir-base/src/site/site.xml
@@ -52,6 +52,10 @@