Uses of Class
org.gitlab4j.api.models.Issue
Packages that use Issue
-
Uses of Issue in org.gitlab4j.api
Methods in org.gitlab4j.api that return IssueModifier and TypeMethodDescriptionIssuesApi.assignIssue
(Object projectIdOrPath, Long issueIid, Long assigneeId) Updates an existing project issue.IssuesApi.closeIssue
(Object projectIdOrPath, Long issueIid) Closes an existing project issue.IssuesApi.createIssue
(Object projectIdOrPath, String title, String description) Create an issue for the project.IssuesApi.createIssue
(Object projectIdOrPath, String title, String description, Boolean confidential, List<Long> assigneeIds, Long milestoneId, String labels, Date createdAt, Date dueDate, Long mergeRequestToResolveId, Long discussionToResolveId) Create an issue for the project.IssuesApi.createIssue
(Object projectIdOrPath, String title, String description, Boolean confidential, List<Long> assigneeIds, Long milestoneId, String labels, Date createdAt, Date dueDate, Long mergeRequestToResolveId, Long discussionToResolveId, String iterationTitle) Create an issue for the project.Get a single project issue.Deprecated.Moves an issue to a different project.IssuesApi.updateIssue
(Object projectIdOrPath, Long issueIid, String title, String description, Boolean confidential, List<Long> assigneeIds, Long milestoneId, String labels, Constants.StateEvent stateEvent, Date updatedAt, Date dueDate) Updates an existing project issue.Methods in org.gitlab4j.api that return types with arguments of type IssueModifier and TypeMethodDescriptionMergeRequestApi.getApprovalStatus
(Object projectIdOrPath, Long mergeRequestIid) Get list containing all the issues that would be closed by merging the provided merge request.MergeRequestApi.getClosesIssues
(Object projectIdOrPath, Long mergeRequestIid) Get list containing all the issues that would be closed by merging the provided merge request.MergeRequestApi.getClosesIssues
(Object projectIdOrPath, Long mergeRequestIid, int itemsPerPage) Get a Pager containing all the issues that would be closed by merging the provided merge request.MergeRequestApi.getClosesIssues
(Object projectIdOrPath, Long mergeRequestIid, int page, int perPage) Get list containing all the issues that would be closed by merging the provided merge request.MergeRequestApi.getClosesIssuesStream
(Object projectIdOrPath, Long mergeRequestIid) Get Stream containing all the issues that would be closed by merging the provided merge request.IssuesApi.getGroupIssues
(Object groupIdOrPath) Get a list of a group’s issues.IssuesApi.getGroupIssues
(Object groupIdOrPath, int itemsPerPage) Get a Pager of groups's issues.IssuesApi.getGroupIssues
(Object groupIdOrPath, IssueFilter filter) Get a list of a group’s issues.IssuesApi.getGroupIssues
(Object groupIdOrPath, IssueFilter filter, int itemsPerPage) Get a list of groups's issues.MilestonesApi.getGroupIssues
(Object groupIdOrPath, Long milestoneId) Get the list of issues associated with the specified group milestone.MilestonesApi.getGroupIssues
(Object groupIdOrPath, Long milestoneId, int itemsPerPage) Get the Pager of issues associated with the specified group milestone.IssuesApi.getGroupIssuesStream
(Object groupIdOrPath) Get a Stream of a group’s issues.IssuesApi.getGroupIssuesStream
(Object groupIdOrPath, IssueFilter filter) Get a Stream of a group’s issues.MilestonesApi.getGroupIssuesStream
(Object groupIdOrPath, Long milestoneId) Get a Stream of issues associated with the specified group milestone.IssuesApi.getIssueLinks
(Object projectIdOrPath, Long issueIid) Get a list of related issues of a given issue, sorted by the relationship creation datetime (ascending).IssuesApi.getIssueLinks
(Object projectIdOrPath, Long issueIid, int itemsPerPage) Get a Pager of related issues of a given issue, sorted by the relationship creation datetime (ascending).IssuesApi.getIssueLinksStream
(Object projectIdOrPath, Long issueIid) Get a Stream of related issues of a given issue, sorted by the relationship creation datetime (ascending).IssuesApi.getIssues()
Get all issues the authenticated user has access to.IssuesApi.getIssues
(int itemsPerPage) Get a Pager of all issues the authenticated user has access to.IssuesApi.getIssues
(int page, int perPage) Get all issues the authenticated user has access to using the specified page and per page setting.Get a list of project's issues.Get a Pager of project's issues.Get a list of project's issues using the specified page and per page settings.IssuesApi.getIssues
(Object projectIdOrPath, IssueFilter filter) Get a list of project's issues.IssuesApi.getIssues
(Object projectIdOrPath, IssueFilter filter, int itemsPerPage) Get a list of project's issues.IssuesApi.getIssues
(Object projectIdOrPath, IssueFilter filter, int page, int perPage) Get a list of project's issues.IssuesApi.getIssues
(IssueFilter filter) Get all issues the authenticated user has access to.IssuesApi.getIssues
(IssueFilter filter, int itemsPerPage) Get all issues the authenticated user has access to.IssuesApi.getIssues
(IssueFilter filter, int page, int perPage) Get all issues the authenticated user has access to.Get the list of issues associated with the specified milestone.Get a Pager of issues associated with the specified milestone.Deprecated.Will be removed in version 6.0, replaced byIssuesApi.getIssues(Object)
Deprecated.Will be removed in version 6.0, replaced byIssuesApi.getIssues(Object, int)
Deprecated.Will be removed in version 6.0, replaced byIssuesApi.getIssues(Object, int, int)
IssuesApi.getIssuesStream()
Get all issues the authenticated user has access to as a Stream.IssuesApi.getIssuesStream
(Object projectIdOrPath) Get a Stream of project's issues.IssuesApi.getIssuesStream
(Object projectIdOrPath, IssueFilter filter) Get a Stream of project's issues.IssuesApi.getIssuesStream
(IssueFilter filter) Get all issues the authenticated user has access to.MilestonesApi.getIssuesStream
(Object projectIdOrPath, Long milestoneId) Get a Stream of issues associated with the specified milestone.ProjectApi.getIssuesStream
(Object projectIdOrPath) Deprecated.Will be removed in version 6.0, replaced byIssuesApi.getIssues(Object)
IssuesApi.getOptionalIssue
(Object projectIdOrPath, Long issueIid) Get a single project issue as an Optional instance. -
Uses of Issue in org.gitlab4j.api.models
Subclasses of Issue in org.gitlab4j.api.modelsMethods in org.gitlab4j.api.models that return IssueModifier and TypeMethodDescriptionTodo.getIssueTarget()
IssueLink.getSourceIssue()
IssueLink.getTargetIssue()
Methods in org.gitlab4j.api.models with parameters of type IssueModifier and TypeMethodDescriptionvoid
IssueLink.setSourceIssue
(Issue sourceIssue) void
IssueLink.setTargetIssue
(Issue targetIssue)
IssuesApi.getIssue(Object, Long)