Fix build
This commit is contained in:
parent
c779ede7ad
commit
bb96ae4e25
|
@ -88,16 +88,6 @@ public abstract class AbstractJaxRsPageProvider extends AbstractJaxRsProvider im
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Default: an empty list of interceptors
|
|
||||||
*
|
|
||||||
* @see ca.uhn.fhir.rest.server.IRestfulServer#getInterceptors()
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<IServerInterceptor> getInterceptors() {
|
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default: no paging provider
|
* Default: no paging provider
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -270,16 +270,6 @@ public abstract class AbstractJaxRsResourceProvider<R extends IResource> extends
|
||||||
return getBindings().getBinding(restOperation, theBindingKey);
|
return getBindings().getBinding(restOperation, theBindingKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Default: an empty list of interceptors
|
|
||||||
*
|
|
||||||
* @see ca.uhn.fhir.rest.server.IRestfulServer#getInterceptors()
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<IServerInterceptor> getInterceptors() {
|
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default: no paging provider
|
* Default: no paging provider
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class ModelScannerDstu3Test {
|
||||||
public void testScanExtensionTypes() throws DataFormatException {
|
public void testScanExtensionTypes() throws DataFormatException {
|
||||||
|
|
||||||
FhirContext ctx = FhirContext.forDstu3();
|
FhirContext ctx = FhirContext.forDstu3();
|
||||||
RuntimeResourceDefinition def = ctx.getResourceDefinition(ResourceWithExtensionsA.class);
|
RuntimeResourceDefinition def = ctx.getResourceDefinition(ResourceWithExtensionsDstu3A.class);
|
||||||
|
|
||||||
assertEquals(RuntimeChildCompositeDatatypeDefinition.class, def.getChildByNameOrThrowDataFormatException("identifier").getClass());
|
assertEquals(RuntimeChildCompositeDatatypeDefinition.class, def.getChildByNameOrThrowDataFormatException("identifier").getClass());
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ import ca.uhn.fhir.model.api.annotation.Extension;
|
||||||
import ca.uhn.fhir.model.api.annotation.ResourceDef;
|
import ca.uhn.fhir.model.api.annotation.ResourceDef;
|
||||||
|
|
||||||
@ResourceDef(name = "ResourceWithExtensionsA", id="0001")
|
@ResourceDef(name = "ResourceWithExtensionsA", id="0001")
|
||||||
public class ResourceWithExtensionsA extends BaseResource {
|
public class ResourceWithExtensionsDstu3A extends BaseResource {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NB: several unit tests depend on the structure here
|
* NB: several unit tests depend on the structure here
|
Loading…
Reference in New Issue