Uses of Class
org.projectnessie.error.NessieConflictException
-
Packages that use NessieConflictException Package Description org.projectnessie.api org.projectnessie.api.http org.projectnessie.error -
-
Uses of NessieConflictException in org.projectnessie.api
Methods in org.projectnessie.api that throw NessieConflictException Modifier and Type Method Description voidTreeApi. assignReference(Reference.ReferenceType referenceType, @Valid @NotNull @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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String referenceName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String oldHash, @Valid @NotNull Reference assignTo)Update a reference's HEAD to point to a different commit.BranchTreeApi. commitMultipleOperations(@Valid @NotNull @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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String branchName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash, @Valid @NotNull Operations operations)Commit multiple operations against the given branch expecting that branch to have the given hash as its latest commit.ReferenceTreeApi. createReference(@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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String sourceRefName, @Valid @NotNull Reference reference)Create a new reference.voidTreeApi. deleteReference(Reference.ReferenceType referenceType, @Valid @NotNull @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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String referenceName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash)Delete a named reference.voidTreeApi. mergeRefIntoBranch(@Valid @NotNull @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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String branchName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash, @Valid @NotNull Merge merge)merge mergeRef onto ref.voidTreeApi. transplantCommitsIntoBranch(@Valid @NotNull @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, one of the ./_- characters, not end with a slash or dot, not contain \'..\'") String branchName, @Valid @NotNull @Pattern(regexp="^[0-9a-fA-F]{8,64}$",message="Hash must consist of the hex representation of 4-32 bytes") String hash, @Valid String message, @Valid Transplant transplant)cherry pick a set of commits into a branch. -
Uses of NessieConflictException in org.projectnessie.api.http
Methods in org.projectnessie.api.http that throw NessieConflictException Modifier and Type Method Description voidHttpTreeApi. assignReference(Reference.ReferenceType referenceType, String referenceName, String oldHash, Reference assignTo)BranchHttpTreeApi. commitMultipleOperations(String branchName, String hash, Operations operations)ReferenceHttpTreeApi. createReference(String sourceRefName, Reference reference)voidHttpTreeApi. deleteReference(Reference.ReferenceType referenceType, String referenceName, String hash)voidHttpTreeApi. mergeRefIntoBranch(String branchName, String hash, Merge merge)voidHttpTreeApi. transplantCommitsIntoBranch(String branchName, String hash, String message, Transplant transplant) -
Uses of NessieConflictException in org.projectnessie.error
Subclasses of NessieConflictException in org.projectnessie.error Modifier and Type Class Description classNessieNamespaceAlreadyExistsExceptionThis exception is thrown when the namespace with the same name already exists.classNessieNamespaceNotEmptyExceptionThis exception is thrown when the namespace is not empty.classNessieReferenceAlreadyExistsExceptionThis exception is thrown when a reference could not be created because another reference with the same name is already present in the store.classNessieReferenceConflictExceptionThis exception is thrown when the expected state of a reference (e.g.
-