Package org.vx68k.bitbucket.api
Interface BitbucketIssue
-
- All Known Implementing Classes:
BitbucketClientIssue
public interface BitbucketIssueIssue on Bitbucket Cloud. An issue belongs to a repository.- Since:
- 5.0
- Author:
- Kaz Nishimura
- See Also:
BitbucketRepository
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBitbucketIssue.CommentIssue comment on Bitbucket Cloud.static interfaceBitbucketIssue.ComponentIssue component resource on Bitbucket Cloud.static interfaceBitbucketIssue.MilestoneIssue milestone resource on Bitbucket Cloud.static interfaceBitbucketIssue.VersionIssue version resource on Bitbucket Cloud.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitbucketUsergetAssignee()Returns the assignee of the issue.BitbucketIssue.ComponentgetComponent()Returns the component of the issue.BitbucketRenderedgetContent()Returns the content of the issue.InstantgetCreated()Returns the instant when the issue was created.InstantgetEdited()Returns the instant when the issue was last edited.intgetId()Returns the identifier of the issue.StringgetKind()Returns the kind of the issue.BitbucketIssue.MilestonegetMilestone()Returns the milestone of the issue.StringgetPriority()Returns the priority of the issue.BitbucketUsergetReporter()Returns the reporter of the issue.BitbucketRepositorygetRepository()Returns the repository of the issue.StringgetState()Returns the state of the issue.StringgetTitle()Returns the title of the issue.InstantgetUpdated()Returns the instant when the issue was last updated.BitbucketIssue.VersiongetVersion()Returns the version of the issue.intgetVotes()Returns the number of votes.intgetWatches()Returns the number of watches.
-
-
-
Method Detail
-
getRepository
BitbucketRepository getRepository()
Returns the repository of the issue.- Returns:
- the repository of the issue
-
getId
int getId()
Returns the identifier of the issue.- Returns:
- the identifier of the issue
-
getReporter
BitbucketUser getReporter()
Returns the reporter of the issue.- Returns:
- the reporter of the issue
-
getState
String getState()
Returns the state of the issue.- Returns:
- the state of the issue
-
getKind
String getKind()
Returns the kind of the issue.- Returns:
- the kind of the issue
-
getPriority
String getPriority()
Returns the priority of the issue.- Returns:
- the priority of the issue
-
getTitle
String getTitle()
Returns the title of the issue.- Returns:
- the title of the issue
-
getContent
BitbucketRendered getContent()
Returns the content of the issue.- Returns:
- the content of the issue
-
getAssignee
BitbucketUser getAssignee()
Returns the assignee of the issue.- Returns:
- the assignee of the issue
-
getComponent
BitbucketIssue.Component getComponent()
Returns the component of the issue.- Returns:
- the component of the issue
-
getMilestone
BitbucketIssue.Milestone getMilestone()
Returns the milestone of the issue.- Returns:
- the milestone of the issue
-
getVersion
BitbucketIssue.Version getVersion()
Returns the version of the issue.- Returns:
- the version of the issue
-
getVotes
int getVotes()
Returns the number of votes.- Returns:
- the number of votes
-
getWatches
int getWatches()
Returns the number of watches.- Returns:
- the number of watches
-
getCreated
Instant getCreated()
Returns the instant when the issue was created.- Returns:
- the instant when the issue was created
-
getUpdated
Instant getUpdated()
Returns the instant when the issue was last updated.- Returns:
- the instant when the issue was last updated
-
getEdited
Instant getEdited()
Returns the instant when the issue was last edited.- Returns:
- the instant when the issue was last edited
-
-