Uses of Interface
org.projectnessie.model.MultiGetContentsResponse
-
Packages that use MultiGetContentsResponse Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.model -
-
Uses of MultiGetContentsResponse in org.projectnessie.api
Methods in org.projectnessie.api that return MultiGetContentsResponse Modifier and Type Method Description MultiGetContentsResponseContentsApi. getMultipleContents(@Valid @Pattern(regexp="^[A-Za-z](((?![.][.])[A-Za-z0-9./_-])*[A-Za-z0-9._-])?$",message="Reference name must start with a letter, followed by letters, digits, a ./_- character, not end with a slash, not contain ..") String ref, @Valid @Pattern(regexp="^[0-9a-fA-F]{16,64}$",message="Hash must consist of the hex representation of 8-32 bytes") String hashOnRef, @Valid @NotNull MultiGetContentsRequest request)Similar toContentsApi.getContents(ContentsKey, String, String), but takes multipleContentsKeys and returns theContentsfor the one or moreContentsKeys in a named-reference (aBranchorTag). -
Uses of MultiGetContentsResponse in org.projectnessie.api.http
Methods in org.projectnessie.api.http that return MultiGetContentsResponse Modifier and Type Method Description MultiGetContentsResponseHttpContentsApi. getMultipleContents(String ref, String hashOnRef, MultiGetContentsRequest request) -
Uses of MultiGetContentsResponse in org.projectnessie.model
Classes in org.projectnessie.model that implement MultiGetContentsResponse Modifier and Type Class Description classImmutableMultiGetContentsResponseImmutable implementation ofMultiGetContentsResponse.Methods in org.projectnessie.model that return MultiGetContentsResponse Modifier and Type Method Description static MultiGetContentsResponseMultiGetContentsResponse. of(List<MultiGetContentsResponse.ContentsWithKey> items)Methods in org.projectnessie.model with parameters of type MultiGetContentsResponse Modifier and Type Method Description static ImmutableMultiGetContentsResponseImmutableMultiGetContentsResponse. copyOf(MultiGetContentsResponse instance)Creates an immutable copy of aMultiGetContentsResponsevalue.ImmutableMultiGetContentsResponse.BuilderImmutableMultiGetContentsResponse.Builder. from(MultiGetContentsResponse instance)Fill a builder with attribute values from the providedMultiGetContentsResponseinstance.
-