Package org.projectnessie.client.api
Interface GetContentBuilder
-
- All Superinterfaces:
OnReferenceBuilder<GetContentBuilder>
- All Known Implementing Classes:
BaseGetContentBuilder
public interface GetContentBuilder extends OnReferenceBuilder<GetContentBuilder>
Request builder for "get content".- Since:
NessieApiV1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<org.projectnessie.model.ContentKey,org.projectnessie.model.Content>get()org.projectnessie.model.ContentResponsegetSingle(@Valid org.projectnessie.model.ContentKey key)org.projectnessie.model.GetMultipleContentsResponsegetWithResponse()GetContentBuilderkey(@Valid org.projectnessie.model.ContentKey key)GetContentBuilderkeys(java.util.List<org.projectnessie.model.ContentKey> keys)-
Methods inherited from interface org.projectnessie.client.api.OnReferenceBuilder
hashOnRef, reference, refName
-
-
-
-
Method Detail
-
key
GetContentBuilder key(@Valid @Valid org.projectnessie.model.ContentKey key)
-
keys
GetContentBuilder keys(java.util.List<org.projectnessie.model.ContentKey> keys)
-
getSingle
org.projectnessie.model.ContentResponse getSingle(@Valid @Valid org.projectnessie.model.ContentKey key) throws org.projectnessie.error.NessieNotFoundException- Throws:
org.projectnessie.error.NessieNotFoundException
-
get
java.util.Map<org.projectnessie.model.ContentKey,org.projectnessie.model.Content> get() throws org.projectnessie.error.NessieNotFoundException- Throws:
org.projectnessie.error.NessieNotFoundException
-
getWithResponse
org.projectnessie.model.GetMultipleContentsResponse getWithResponse() throws org.projectnessie.error.NessieNotFoundException- Throws:
org.projectnessie.error.NessieNotFoundException
-
-