Interface LabelApi
-
- All Known Implementing Classes:
LabelApi.NotImplemented
public interface LabelApi
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LabelApi.NotImplemented
A default implementation which allows source compatibility when adding new methods to the interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LabelApi
create(LabelDefinitionInput input)
default void
delete()
void
delete(String commitMessage)
LabelDefinitionInfo
get()
LabelDefinitionInfo
update(LabelDefinitionInput input)
-
-
-
Method Detail
-
create
LabelApi create(LabelDefinitionInput input) throws RestApiException
- Throws:
RestApiException
-
get
LabelDefinitionInfo get() throws RestApiException
- Throws:
RestApiException
-
update
LabelDefinitionInfo update(LabelDefinitionInput input) throws RestApiException
- Throws:
RestApiException
-
delete
default void delete() throws RestApiException
- Throws:
RestApiException
-
delete
void delete(String commitMessage) throws RestApiException
- Throws:
RestApiException
-
-