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
* Returns list of urns from local secondary index that satisfy the given filter conditions.
386
387
*
388
+
* <p>Results are ordered lexicographically by the string representation of the URN.
389
+
*
387
390
* @param indexFilter {@link IndexFilter} containing filter conditions to be applied
388
391
* @param lastUrn last urn of the previous fetched page. For the first page, this should be set as NULL
389
392
* @param pageSize maximum number of distinct urns to return
@@ -404,13 +407,15 @@ public ListResult<URN> listUrns(@Nonnull Class<URN> urnClazz, @Nullable URN last
404
407
405
408
/**
406
409
* Retrieves {@link ListResult} of {@link UrnAspectEntry} containing latest version of aspects along with the urn for the list of urns
407
-
* returned from local secondary index that satisfy given filter conditions.
410
+
* returned from local secondary index that satisfy given filter conditions. The returned list is ordered lexicographically by the string
411
+
* representation of the URN.
408
412
*
409
413
* @param aspectClasses aspect classes whose latest versions need to be retrieved
410
414
* @param indexFilter {@link IndexFilter} containing filter conditions to be applied
411
415
* @param lastUrn last urn of the previous fetched page. For the first page, this should be set as NULL
412
416
* @param pageSize maximum number of distinct urns whose aspects need to be retrieved
413
-
* @return {@link ListResult} containing latest versions of aspects along with urns returned from local secondary index satisfying given filter conditions
417
+
* @return {@link ListResult} containing ordered list of latest versions of aspects along with urns returned from local secondary index
* Returns {@link CollectionResult} containing the values of multiple entities obtained after filtering urns from local secondary index.
387
-
* Here the value does not contain any metadata aspect, only parts of the urn (if applicable). {@link ListResultMetadata} contains relevant list of urns.
387
+
* Returns {@link CollectionResult} containing ordered list of values of multiple entities obtained after filtering urns
388
+
* from local secondary index. The returned list is ordered lexicographically by the string representation of the URN.
389
+
* The values returned do not contain any metadata aspect, only parts of the urn (if applicable).
390
+
* The list of values is in the same order as the list of urns contained in {@link ListResultMetadata}.
388
391
*
389
392
* @param filter {@link IndexFilter} that defines the filter conditions
390
393
* @param lastUrn last urn of the previous fetched page
391
394
* @param pagingContext {@link PagingContext} defining the paging parameters of the request
392
-
* @return {@link CollectionResult} containing the values of multiple entities
395
+
* @return {@link CollectionResult} containing ordered list of values of multiple entities
0 commit comments