Package org.projectnessie.model
Interface Operation.Put
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.projectnessie.model.Operation
Operation.Delete, Operation.Put, Operation.Unchanged
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description @NotNull @NotNull ContentgetContent()DocumentationgetDocumentation()ContentgetExpectedContent()Deprecated.java.util.List<ContentMetadata>getMetadata()Additional information about the operation and/or content object.static Operation.Putof(ContentKey key, Content content)static Operation.Putof(ContentKey key, Content content, Content expectedContent)Deprecated.static Operation.Putof(ContentKey key, Content content, Documentation documentation)
-
-
-
Method Detail
-
getContent
@NotNull @NotNull @NotNull @NotNull Content getContent()
-
getExpectedContent
@Nullable @Nullable @Deprecated Content getExpectedContent()
Deprecated.
-
getMetadata
java.util.List<ContentMetadata> getMetadata()
Additional information about the operation and/or content object. If and how a Nessie server uses and handles the information depends on the server version and type of metadata (called variant).
-
getDocumentation
@Nullable @Nullable Documentation getDocumentation()
-
of
static Operation.Put of(ContentKey key, Content content)
-
of
static Operation.Put of(ContentKey key, Content content, Documentation documentation)
-
of
@Deprecated static Operation.Put of(ContentKey key, Content content, Content expectedContent)
Deprecated.
-
-