Uses of Class
org.projectnessie.model.ContentKey
-
Packages that use ContentKey Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.error org.projectnessie.model -
-
Uses of ContentKey in org.projectnessie.api
Methods in org.projectnessie.api with parameters of type ContentKey Modifier and Type Method Description ContentContentApi. getContent(@Valid ContentKey key, @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) -
Uses of ContentKey in org.projectnessie.api.http
Methods in org.projectnessie.api.http with parameters of type ContentKey Modifier and Type Method Description ContentHttpContentApi. getContent(ContentKey key, String ref, String hashOnRef) -
Uses of ContentKey in org.projectnessie.error
Constructors in org.projectnessie.error with parameters of type ContentKey Constructor Description NessieContentNotFoundException(ContentKey key, String ref) -
Uses of ContentKey in org.projectnessie.model
Subclasses of ContentKey in org.projectnessie.model Modifier and Type Class Description classImmutableContentKeyImmutable implementation ofContentKey.Methods in org.projectnessie.model that return ContentKey Modifier and Type Method Description static ContentKeyContentKey. fromPathString(String encoded)Convert from path encoded string to normal string.ContentKeyDiffResponse.DiffEntry. getKey()@NotNull ContentKeyGetMultipleContentsResponse.ContentWithKey. getKey()ContentKeyImmutableContentWithKey. getKey()ContentKeyImmutableDelete. getKey()ContentKeyImmutableDiffEntry. getKey()ContentKeyImmutablePut. getKey()ContentKeyImmutableUnchanged. getKey()@NotNull ContentKeyOperation. getKey()@NotNull ContentKeyEntriesResponse.Entry. getName()ContentKeyImmutableEntry. getName()static ContentKeyContentKey. of(String... elements)static ContentKeyContentKey. of(List<String> elements)static ContentKeyContentKey. of(Namespace namespace, String name)Methods in org.projectnessie.model that return types with arguments of type ContentKey Modifier and Type Method Description @NotNull @Size(min=1) List<ContentKey>GetMultipleContentsRequest. getRequestedKeys()List<ContentKey>ImmutableGetMultipleContentsRequest. getRequestedKeys()Methods in org.projectnessie.model with parameters of type ContentKey Modifier and Type Method Description ImmutableGetMultipleContentsRequest.BuilderImmutableGetMultipleContentsRequest.Builder. addRequestedKeys(ContentKey element)Adds one element torequestedKeyslist.ImmutableGetMultipleContentsRequest.BuilderImmutableGetMultipleContentsRequest.Builder. addRequestedKeys(ContentKey... elements)Adds elements torequestedKeyslist.static ImmutableContentKeyImmutableContentKey. copyOf(ContentKey instance)Creates an immutable copy of aContentKeyvalue.ImmutableContentKey.BuilderImmutableContentKey.Builder. from(ContentKey instance)Fill a builder with attribute values from the providedContentKeyinstance.ImmutableContentWithKey.BuilderImmutableContentWithKey.Builder. key(ContentKey key)Initializes the value for thekeyattribute.ImmutableDelete.BuilderImmutableDelete.Builder. key(ContentKey key)Initializes the value for thekeyattribute.ImmutableDiffEntry.BuilderImmutableDiffEntry.Builder. key(ContentKey key)Initializes the value for thekeyattribute.ImmutablePut.BuilderImmutablePut.Builder. key(ContentKey key)Initializes the value for thekeyattribute.ImmutableUnchanged.BuilderImmutableUnchanged.Builder. key(ContentKey key)Initializes the value for thekeyattribute.ImmutableEntry.BuilderImmutableEntry.Builder. name(ContentKey name)Initializes the value for thenameattribute.static GetMultipleContentsRequestGetMultipleContentsRequest. of(ContentKey... keys)static GetMultipleContentsResponse.ContentWithKeyGetMultipleContentsResponse.ContentWithKey. of(ContentKey key, Content content)static Operation.DeleteOperation.Delete. of(ContentKey key)static Operation.PutOperation.Put. of(ContentKey key, Content content)static Operation.PutOperation.Put. of(ContentKey key, Content content, Content expectedContent)static Operation.UnchangedOperation.Unchanged. of(ContentKey key)ImmutableContentWithKeyImmutableContentWithKey. withKey(ContentKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableDeleteImmutableDelete. withKey(ContentKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableDiffEntryImmutableDiffEntry. withKey(ContentKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutablePutImmutablePut. withKey(ContentKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableUnchangedImmutableUnchanged. withKey(ContentKey value)Copy the current immutable object by setting a value for thekeyattribute.ImmutableEntryImmutableEntry. withName(ContentKey value)Copy the current immutable object by setting a value for thenameattribute.ImmutableGetMultipleContentsRequestImmutableGetMultipleContentsRequest. withRequestedKeys(ContentKey... elements)Copy the current immutable object with elements that replace the content ofrequestedKeys.Method parameters in org.projectnessie.model with type arguments of type ContentKey Modifier and Type Method Description ImmutableGetMultipleContentsRequest.BuilderImmutableGetMultipleContentsRequest.Builder. addAllRequestedKeys(Iterable<? extends ContentKey> elements)Adds elements torequestedKeyslist.static GetMultipleContentsRequestGetMultipleContentsRequest. of(List<ContentKey> keys)ImmutableGetMultipleContentsRequest.BuilderImmutableGetMultipleContentsRequest.Builder. requestedKeys(Iterable<? extends ContentKey> elements)Sets or replaces all elements forrequestedKeyslist.ImmutableGetMultipleContentsRequestImmutableGetMultipleContentsRequest. withRequestedKeys(Iterable<? extends ContentKey> elements)Copy the current immutable object with elements that replace the content ofrequestedKeys.
-