Uses of Class
org.gitlab4j.api.models.Release
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of Release in org.gitlab4j.api
Methods in org.gitlab4j.api that return Release Modifier and Type Method 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.Methods in org.gitlab4j.api that return types with arguments of type Release Modifier and Type Method 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. -
Uses of Release in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Release Modifier and Type Method Description Release
Tag. getRelease()
Methods in org.gitlab4j.api.models with parameters of type Release Modifier and Type Method Description void
Tag. setRelease(Release release)