FIx broken compile
This commit is contained in:
parent
5ad9e39d7b
commit
de926434b8
|
@ -41,6 +41,7 @@ import ca.uhn.fhir.model.dstu.resource.Conformance;
|
|||
import ca.uhn.fhir.model.primitive.IdDt;
|
||||
import ca.uhn.fhir.parser.IParser;
|
||||
import ca.uhn.fhir.rest.api.MethodOutcome;
|
||||
import ca.uhn.fhir.rest.gclient.DateParam;
|
||||
import ca.uhn.fhir.rest.gclient.ICriterion;
|
||||
import ca.uhn.fhir.rest.gclient.ICriterionInternal;
|
||||
import ca.uhn.fhir.rest.gclient.IFor;
|
||||
|
@ -373,6 +374,24 @@ public class GenericClient extends BaseClient implements IGenericClient {
|
|||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IFor json() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IFor sort() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IFor ascending(DateParam theParamBirthdate) {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class QueryInternal implements IQuery {
|
||||
|
|
|
@ -13,5 +13,9 @@ public interface IFor {
|
|||
IFor include(Include theIncludeManagingorganization);
|
||||
|
||||
IFor json();
|
||||
|
||||
IFor sort();
|
||||
|
||||
IFor ascending(DateParam theParamBirthdate);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue