diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java index bf2bc4680c0..fdcd1c312a5 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/api/server/IBundleProvider.java @@ -26,12 +26,12 @@ import org.apache.commons.lang3.Validate; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IPrimitiveType; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.stream.Collectors; -import javax.annotation.Nonnull; -import javax.annotation.Nullable; public interface IBundleProvider { @@ -161,14 +161,13 @@ public interface IBundleProvider { * whole page returned. *
* - * @param theFromIndex The low index (inclusive) to return - * @param theToIndex The high index (exclusive) to return + * @param theFromIndex The low index (inclusive) to return + * @param theToIndex The high index (exclusive) to return * @param theResponsePageBuilder The ResponsePageBuilder. The builder will add values needed for the response page. * @return A list of resources. The size of this list must be at leasttheToIndex - theFromIndex
.
*/
default List