Package org.vx68k.bitbucket.api
Interface BitbucketIssue
-
- All Known Implementing Classes:
BitbucketClientIssue
public interface BitbucketIssue
Issue 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 interface
BitbucketIssue.Comment
Issue comment on Bitbucket Cloud.static interface
BitbucketIssue.Component
Issue component resource on Bitbucket Cloud.static interface
BitbucketIssue.Milestone
Issue milestone resource on Bitbucket Cloud.static interface
BitbucketIssue.Version
Issue version resource on Bitbucket Cloud.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitbucketUser
getAssignee()
Returns the assignee of the issue.BitbucketIssue.Component
getComponent()
Returns the component of the issue.BitbucketRendered
getContent()
Returns the content of the issue.Instant
getCreated()
Returns the instant when the issue was created.Instant
getEdited()
Returns the instant when the issue was last edited.int
getId()
Returns the identifier of the issue.String
getKind()
Returns the kind of the issue.BitbucketIssue.Milestone
getMilestone()
Returns the milestone of the issue.String
getPriority()
Returns the priority of the issue.BitbucketUser
getReporter()
Returns the reporter of the issue.BitbucketRepository
getRepository()
Returns the repository of the issue.String
getState()
Returns the state of the issue.String
getTitle()
Returns the title of the issue.Instant
getUpdated()
Returns the instant when the issue was last updated.BitbucketIssue.Version
getVersion()
Returns the version of the issue.int
getVotes()
Returns the number of votes.int
getWatches()
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
-
-