You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: basyx.submodelrepository/basyx.submodelrepository-backend/src/main/java/org/eclipse/digitaltwin/basyx/submodelrepository/backend/CrudSubmodelRepository.java
+1-17Lines changed: 1 addition & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -92,23 +92,7 @@ public CursorResult<List<Submodel>> getAllSubmodels(PaginationInfo pInfo) {
Copy file name to clipboardExpand all lines: basyx.submodelservice/basyx.submodelservice-backend-inmemory/src/main/java/org/eclipse/digitaltwin/basyx/submodelservice/InMemorySubmodelBackend.java
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@
43
43
importjava.util.List;
44
44
importjava.util.TreeMap;
45
45
importjava.util.stream.Collectors;
46
+
importjava.util.stream.StreamSupport;
46
47
47
48
/**
48
49
* Implements the SubmodelService as in-memory variant
@@ -57,6 +58,27 @@ public InMemorySubmodelBackend() {
Copy file name to clipboardExpand all lines: basyx.submodelservice/basyx.submodelservice-backend-mongodb/src/main/java/org/eclipse/digitaltwin/basyx/submodelservice/backend/MongoDbSubmodelOperations.java
Copy file name to clipboardExpand all lines: basyx.submodelservice/basyx.submodelservice-backend/src/main/java/org/eclipse/digitaltwin/basyx/submodelservice/backend/SubmodelOperations.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,14 @@
42
42
*/
43
43
publicinterfaceSubmodelOperations {
44
44
45
+
/**
46
+
* Retrieves all Submodels with pagination support.
47
+
*
48
+
* @param pInfo the pagination information
49
+
* @return a {@code CursorResult} containing a list of Submodels
0 commit comments