Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
Modifier and Type | Method and Description |
---|---|
Release |
ReleasesApi.createRelease(Object projectIdOrPath,
ReleaseParams params)
Create a Release.
|
Release |
TagsApi.createRelease(Object projectIdOrPath,
String tagName,
String releaseNotes)
Add release notes to the existing git tag.
|
Release |
ReleasesApi.getRelease(Object projectIdOrPath,
String tagName)
Get a Release for the given tag name.
|
Release |
ReleasesApi.updateRelease(Object projectIdOrPath,
ReleaseParams params)
Updates the release notes of a given release.
|
Release |
TagsApi.updateRelease(Object projectIdOrPath,
String tagName,
String releaseNotes)
Updates the release notes of a given release.
|
Modifier and Type | Method and Description |
---|---|
Optional<Release> |
ReleasesApi.getOptionalRelease(Object projectIdOrPath,
String tagName)
Get an Optional instance holding a Release instance for the specific tag name.
|
List<Release> |
ReleasesApi.getReleases(Object projectIdOrPath)
Get a list of releases for a project, sorted by release date.
|
Pager<Release> |
ReleasesApi.getReleases(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of releases for a project, sorted by release date.
|
Stream<Release> |
ReleasesApi.getReleasesStream(Object projectIdOrPath)
Get a Stream of releases for a project, sorted by release date.
|
Modifier and Type | Method and Description |
---|---|
Release |
Tag.getRelease() |
Modifier and Type | Method and Description |
---|---|
void |
Tag.setRelease(Release release) |
Copyright © 2019. All rights reserved.