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
    • 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