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 SummaryNested 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 SummaryAll 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- 
getRepositoryBitbucketRepository getRepository() Returns the repository of the issue.- Returns:
- the repository of the issue
 
 - 
getIdint getId() Returns the identifier of the issue.- Returns:
- the identifier of the issue
 
 - 
getReporterBitbucketUser getReporter() Returns the reporter of the issue.- Returns:
- the reporter of the issue
 
 - 
getStateString getState() Returns the state of the issue.- Returns:
- the state of the issue
 
 - 
getKindString getKind() Returns the kind of the issue.- Returns:
- the kind of the issue
 
 - 
getPriorityString getPriority() Returns the priority of the issue.- Returns:
- the priority of the issue
 
 - 
getTitleString getTitle() Returns the title of the issue.- Returns:
- the title of the issue
 
 - 
getContentBitbucketRendered getContent() Returns the content of the issue.- Returns:
- the content of the issue
 
 - 
getAssigneeBitbucketUser getAssignee() Returns the assignee of the issue.- Returns:
- the assignee of the issue
 
 - 
getComponentBitbucketIssue.Component getComponent() Returns the component of the issue.- Returns:
- the component of the issue
 
 - 
getMilestoneBitbucketIssue.Milestone getMilestone() Returns the milestone of the issue.- Returns:
- the milestone of the issue
 
 - 
getVersionBitbucketIssue.Version getVersion() Returns the version of the issue.- Returns:
- the version of the issue
 
 - 
getVotesint getVotes() Returns the number of votes.- Returns:
- the number of votes
 
 - 
getWatchesint getWatches() Returns the number of watches.- Returns:
- the number of watches
 
 - 
getCreatedInstant getCreated() Returns the instant when the issue was created.- Returns:
- the instant when the issue was created
 
 - 
getUpdatedInstant getUpdated() Returns the instant when the issue was last updated.- Returns:
- the instant when the issue was last updated
 
 - 
getEditedInstant getEdited() Returns the instant when the issue was last edited.- Returns:
- the instant when the issue was last edited
 
 
- 
 
-