Class ManagedCustomFieldsServiceImpl

java.lang.Object
com.atlassian.greenhopper.api.customfield.ManagedCustomFieldsServiceImpl
All Implemented Interfaces:
ManagedCustomFieldsService

public class ManagedCustomFieldsServiceImpl extends Object implements ManagedCustomFieldsService
Exposes managed custom fields
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default epic color field.
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default epic link field.
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default epic name field.
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default epic status field.
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default rank field The rank field contains the lexographical rank value that is used to rank all issues
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default sprint field The sprint field contains the all sprints an issue is currently assigned.
    com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField>
    Get the default story points field.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ManagedCustomFieldsServiceImpl

      public ManagedCustomFieldsServiceImpl()
  • Method Details

    • getStoryPointsCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getStoryPointsCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default story points field. Story Points is a numeric custom field.
      Specified by:
      getStoryPointsCustomField in interface ManagedCustomFieldsService
    • getEpicNameCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getEpicNameCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default epic name field. Epic name stores a short "label" for an Epic, used to display epic assignment on cards.
      Specified by:
      getEpicNameCustomField in interface ManagedCustomFieldsService
    • getEpicLinkCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getEpicLinkCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default epic link field. Epic-Story relationships are stored as a (system) issue link. The Epic Link field is a calculated custom field that returns the key of the epic in case such a link exists.
      Specified by:
      getEpicLinkCustomField in interface ManagedCustomFieldsService
    • getEpicColorCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getEpicColorCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default epic color field. The epic color field stores a hex value representing the color of the epic.
      Specified by:
      getEpicColorCustomField in interface ManagedCustomFieldsService
    • getEpicStatusCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getEpicStatusCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default epic status field. The epic status field is a single select field and stores the current status of an epic. Currently GreenHopper only distinguishes between the last and all other options. An epic is regarded as closed when the last choice is selected
      Specified by:
      getEpicStatusCustomField in interface ManagedCustomFieldsService
    • getSprintCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getSprintCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default sprint field The sprint field contains the all sprints an issue is currently assigned.
      Specified by:
      getSprintCustomField in interface ManagedCustomFieldsService
    • getRankCustomField

      public com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.fields.CustomField> getRankCustomField()
      Description copied from interface: ManagedCustomFieldsService
      Get the default rank field The rank field contains the lexographical rank value that is used to rank all issues
      Specified by:
      getRankCustomField in interface ManagedCustomFieldsService