Skip to content

Commit

Permalink
Merge the main branch and implement missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
geso02 committed Nov 11, 2024
1 parent 73eed34 commit 617d4d4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,9 @@ public void patchSubmodelElements(String submodelId, List<SubmodelElement> submo
public InputStream getFileByFilePath(String submodelId, String filePath) {
return decorated.getFileByFilePath(submodelId, filePath);
}

@Override
public CursorResult<List<Submodel>> getAllSubmodels(String semanticId, PaginationInfo pInfo) {
return decorated.getAllSubmodels(semanticId, pInfo);
}
}

0 comments on commit 617d4d4

Please sign in to comment.