Skip to content

Commit

Permalink
Rename FhirViewFunctions to JoinKeyFunctions
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes committed Jul 1, 2024
1 parent f613ae6 commit a77bb1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@
import org.hl7.fhir.r4.model.Enumerations.FHIRDefinedType;

/**
* Implementation of FHIRPath functions defined for FHIRViews.
* FHIRPath functions for generating keys for joining between resources.
*
* @author Piotr Szul
*/
@SuppressWarnings("unused")
public class FhirViewFunctions {
public class JoinKeyFunctions {

public static final String REFERENCE_ELEMENT_NAME = "reference";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package au.csiro.pathling.fhirpath.function.registry;

import au.csiro.pathling.fhirpath.function.BoundaryFunctions;
import au.csiro.pathling.fhirpath.function.FhirViewFunctions;
import au.csiro.pathling.fhirpath.function.JoinKeyFunctions;
import au.csiro.pathling.fhirpath.function.NamedFunction;
import au.csiro.pathling.fhirpath.function.StandardFunctions;
import au.csiro.pathling.fhirpath.function.TerminologyFunctions;
Expand Down Expand Up @@ -29,7 +29,7 @@ public StaticFunctionRegistry() {
.putAll(WrappedFunction.mapOf(StandardFunctions.class))
.putAll(WrappedFunction.mapOf(BoundaryFunctions.class))
.putAll(WrappedFunction.mapOf(TerminologyFunctions.class))
.putAll(WrappedFunction.mapOf(FhirViewFunctions.class))
.putAll(WrappedFunction.mapOf(JoinKeyFunctions.class))
.build());
}

Expand Down

0 comments on commit a77bb1b

Please sign in to comment.