Package org.projectnessie.client.api
Interface DeleteTagBuilder
-
- All Superinterfaces:
OnTagBuilder<DeleteTagBuilder>
public interface DeleteTagBuilder extends OnTagBuilder<DeleteTagBuilder>
Request builder for "delete tag".- Since:
NessieApiV1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()org.projectnessie.model.TaggetAndDelete()Deletes the tag and returns its information as it was just before deletion.-
Methods inherited from interface org.projectnessie.client.api.OnTagBuilder
hash, tag, tagName
-
-
-
-
Method Detail
-
delete
void delete() throws org.projectnessie.error.NessieConflictException, org.projectnessie.error.NessieNotFoundException- Throws:
org.projectnessie.error.NessieConflictExceptionorg.projectnessie.error.NessieNotFoundException
-
getAndDelete
org.projectnessie.model.Tag getAndDelete() throws org.projectnessie.error.NessieNotFoundException, org.projectnessie.error.NessieConflictExceptionDeletes the tag and returns its information as it was just before deletion.- Throws:
org.projectnessie.error.NessieNotFoundExceptionorg.projectnessie.error.NessieConflictException- Since:
NessieApiV2
-
-