Package org.projectnessie.model
Interface CommitResponse
-
@Immutable public interface CommitResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceCommitResponse.AddedContent
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static org.projectnessie.model.ImmutableCommitResponse.Builderbuilder()java.util.List<CommitResponse.AddedContent>getAddedContents()@NotNull BranchgetTargetBranch()Returns updated information about the branch where the commit was applied.
-
-
-
Method Detail
-
builder
static org.projectnessie.model.ImmutableCommitResponse.Builder builder()
-
getTargetBranch
@NotNull @NotNull Branch getTargetBranch()
Returns updated information about the branch where the commit was applied.Specifically, the hash of the
Branchwill be the hash of the applied commit.
-
getAddedContents
@Nullable java.util.List<CommitResponse.AddedContent> getAddedContents()
-
-