Missed noe rename in #1769
This commit is contained in:
parent
c2ae5a8326
commit
f89661526c
|
@ -652,7 +652,7 @@ public class FhirContext {
|
|||
* @since 5.0.0
|
||||
*/
|
||||
public IFhirPath newFhirPath() {
|
||||
return myVersion.createFluentPathExecutor(this);
|
||||
return myVersion.createFhirPathExecutor(this);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -38,7 +38,7 @@ import ca.uhn.fhir.rest.api.IVersionSpecificBundleFactory;
|
|||
*/
|
||||
public interface IFhirVersion {
|
||||
|
||||
IFhirPath createFluentPathExecutor(FhirContext theFhirContext);
|
||||
IFhirPath createFhirPathExecutor(FhirContext theFhirContext);
|
||||
|
||||
IBaseResource generateProfile(RuntimeResourceDefinition theRuntimeResourceDefinition, String theServerBase);
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ public class FhirDstu2_1 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ public class FhirDstu2 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ public class FhirDstu3 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
return new FhirPathDstu3(theFhirContext);
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ public class FhirDstu2Hl7Org implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ public class FhirR4 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
return new FhirPathR4(theFhirContext);
|
||||
}
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ public class FhirR5 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
return new FhirPathR5(theFhirContext);
|
||||
}
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ public class FhirDstu2 implements IFhirVersion {
|
|||
private String myId;
|
||||
|
||||
@Override
|
||||
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
|
||||
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
|
||||
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue