FIx broken compile

This commit is contained in:
jamesagnew 2014-05-07 18:15:08 -04:00
parent 5ad9e39d7b
commit de926434b8
2 changed files with 23 additions and 0 deletions

View File

@ -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 {

View File

@ -13,5 +13,9 @@ public interface IFor {
IFor include(Include theIncludeManagingorganization);
IFor json();
IFor sort();
IFor ascending(DateParam theParamBirthdate);
}