Package org.projectnessie.model
Interface GetMultipleContentsResponse
-
@Immutable public interface GetMultipleContentsResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceGetMultipleContentsResponse.ContentWithKey
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull @NotNull java.util.List<GetMultipleContentsResponse.ContentWithKey>getContents()ReferencegetEffectiveReference()The effective reference (for example a branch or tag) including the commit ID from which the entries were fetched.static GetMultipleContentsResponseof(java.util.List<GetMultipleContentsResponse.ContentWithKey> items, Reference effectiveReference)default java.util.Map<ContentKey,Content>toContentsMap()
-
-
-
Method Detail
-
getContents
@NotNull @NotNull @Parameter(order=1) @NotNull @NotNull java.util.List<GetMultipleContentsResponse.ContentWithKey> getContents()
-
getEffectiveReference
@Nullable @Nullable @Parameter(order=2) Reference getEffectiveReference()
The effective reference (for example a branch or tag) including the commit ID from which the entries were fetched.
-
toContentsMap
@NonAttribute default java.util.Map<ContentKey,Content> toContentsMap()
-
of
static GetMultipleContentsResponse of(java.util.List<GetMultipleContentsResponse.ContentWithKey> items, Reference effectiveReference)
-
-