Fix a couple of compile issues

This commit is contained in:
James 2017-02-09 06:53:22 -05:00
parent 0dd6364fe5
commit 12e047b931
4 changed files with 29 additions and 10 deletions

View File

@ -60,6 +60,11 @@ public class PagingPatientProvider implements IResourceProvider {
// Typically this method just returns null // Typically this method just returns null
return null; return null;
} }
@Override
public String getUuid() {
return null;
}
}; };
} }

View File

@ -171,7 +171,7 @@ public class HistoryMethodBinding extends BaseResourceReturningMethodBinding {
return new IBundleProvider() { return new IBundleProvider() {
@Override @Override
public InstantDt getPublished() { public IPrimitiveType<Date> getPublished() {
return resources.getPublished(); return resources.getPublished();
} }

View File

@ -1,5 +1,7 @@
package ca.uhn.fhir.rest.server; package ca.uhn.fhir.rest.server;
import java.util.Date;
/* /*
* #%L * #%L
* HAPI FHIR - Core Library * HAPI FHIR - Core Library
@ -10,7 +12,7 @@ package ca.uhn.fhir.rest.server;
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
@ -23,6 +25,7 @@ package ca.uhn.fhir.rest.server;
import java.util.List; import java.util.List;
import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IBaseResource;
import org.hl7.fhir.instance.model.api.IPrimitiveType;
import ca.uhn.fhir.model.primitive.InstantDt; import ca.uhn.fhir.model.primitive.InstantDt;
@ -31,15 +34,17 @@ public interface IBundleProvider {
/** /**
* Load the given collection of resources by index, plus any additional resources per the * Load the given collection of resources by index, plus any additional resources per the
* server's processing rules (e.g. _include'd resources, OperationOutcome, etc.). For example, * server's processing rules (e.g. _include'd resources, OperationOutcome, etc.). For example,
* if the method is invoked with index 0,10 the method might return 10 search results, plus an * if the method is invoked with index 0,10 the method might return 10 search results, plus an
* additional 20 resources which matched a client's _include specification. * additional 20 resources which matched a client's _include specification.
* *
* @param theFromIndex The low index (inclusive) to return * @param theFromIndex
* @param theToIndex The high index (exclusive) to return * The low index (inclusive) to return
* @param theToIndex
* The high index (exclusive) to return
* @return A list of resources. The size of this list must be at least <code>theToIndex - theFromIndex</code>. * @return A list of resources. The size of this list must be at least <code>theToIndex - theFromIndex</code>.
*/ */
List<IBaseResource> getResources(int theFromIndex, int theToIndex); List<IBaseResource> getResources(int theFromIndex, int theToIndex);
/** /**
* Optionally may be used to signal a preferred page size to the server, e.g. because * Optionally may be used to signal a preferred page size to the server, e.g. because
* the implementing code recognizes that the resources which will be returned by this * the implementing code recognizes that the resources which will be returned by this
@ -50,17 +55,17 @@ public interface IBundleProvider {
* @return Returns the preferred page size or <code>null</code> * @return Returns the preferred page size or <code>null</code>
*/ */
Integer preferredPageSize(); Integer preferredPageSize();
/** /**
* Returns the total number of results which match the given query (exclusive of any * Returns the total number of results which match the given query (exclusive of any
* _include's or OperationOutcome) * _include's or OperationOutcome)
*/ */
int size(); int size();
/** /**
* Returns the instant as of which this result was valid * Returns the instant as of which this result was valid
*/ */
InstantDt getPublished(); IPrimitiveType<Date> getPublished();
/** /**
* Returns the UUID associated with this search. Note that this * Returns the UUID associated with this search. Note that this
@ -68,7 +73,11 @@ public interface IBundleProvider {
* {@link IPagingProvider} is being used that requires UUIDs * {@link IPagingProvider} is being used that requires UUIDs
* being returned. * being returned.
* <p> * <p>
* Otherwise you may simply return {@code null} * In other words, if you are using the default {@link FifoMemoryPagingProvider} in
* your server, it is fine for this method to simply return {@code null} since {@link FifoMemoryPagingProvider}
* does not use the value anyhow. On the other hand, if you are creating a custom
* [@code IPagingProvider} implementation you might use this method to communicate
* the search ID back to the provider.
* </p> * </p>
*/ */
public String getUuid(); public String getUuid();

View File

@ -160,6 +160,11 @@ public class SearchHl7OrgDstu2Test {
public int size() { public int size() {
return 0; return 0;
} }
@Override
public String getUuid() {
return null;
}
}; };
} }