Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenHollmann committed May 2, 2022
1 parent 379b153 commit c122b68
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ private ReferenceType getProcedureReference(DatasetEntity entity, GDARequestCont
}
context.addProcedures(identifier, referenceType);
}
return context.getProcedures(identifier);
return context.getProcedure(identifier);
}

private ReferenceType getObservedPropertyReference(DatasetEntity entity, GDARequestContext context) {
Expand All @@ -322,7 +322,7 @@ private ReferenceType getObservedPropertyReference(DatasetEntity entity, GDARequ
}
context.addObservableProperties(identifier, referenceType);
}
return context.getObservableProperties(identifier);
return context.getObservableProperty(identifier);
}

private ReferenceType getFeatureOfInterestReference(DatasetEntity entity, GDARequestContext context) {
Expand All @@ -334,7 +334,7 @@ private ReferenceType getFeatureOfInterestReference(DatasetEntity entity, GDAReq
}
context.addFeaturesOfInterest(identifier, referenceType);
}
return context.getFeaturesOfInterest(identifier);
return context.getFeatureOfInterest(identifier);
}

private ReferenceType getOfferingReference(DatasetEntity entity, GDARequestContext context) {
Expand All @@ -346,7 +346,7 @@ private ReferenceType getOfferingReference(DatasetEntity entity, GDARequestConte
}
context.addOfferings(identifier, referenceType);
}
return context.getOfferings(identifier);
return context.getOffering(identifier);
}

/**
Expand Down Expand Up @@ -481,7 +481,7 @@ public void addFeaturesOfInterest(String key, ReferenceType reference) {
featuresOfInterest.put(key, reference);
}

public ReferenceType getFeaturesOfInterest(String key) {
public ReferenceType getFeatureOfInterest(String key) {
return featuresOfInterest.get(key);
}

Expand All @@ -497,7 +497,7 @@ public void addObservableProperties(String key, ReferenceType reference) {
observableProperties.put(key, reference);
}

public ReferenceType getObservableProperties(String key) {
public ReferenceType getObservableProperty(String key) {
return observableProperties.get(key);
}

Expand All @@ -513,7 +513,7 @@ public void addProcedures(String key, ReferenceType reference) {
procedures.put(key, reference);
}

public ReferenceType getProcedures(String key) {
public ReferenceType getProcedure(String key) {
return procedures.get(key);
}

Expand All @@ -529,7 +529,7 @@ public void addOfferings(String key, ReferenceType reference) {
offerings.put(key, reference);
}

public ReferenceType getOfferings(String key) {
public ReferenceType getOffering(String key) {
return offerings.get(key);
}

Expand Down

0 comments on commit c122b68

Please sign in to comment.