Package com.atlassian.jira.issue.fields
Interface CustomFieldScope
- All Known Implementing Classes:
CustomFieldScopeImpl
public interface CustomFieldScope
Represents the scope of a given custom field. The scope is defined as the projects/issue types for which a custom
field is visible.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisIncludedIn(IssueContext issueContext) Checks whether the custom field corresponding to this scope is in the scope of the givenIssueContext.
-
Method Details
-
isIncludedIn
Checks whether the custom field corresponding to this scope is in the scope of the givenIssueContext.If the project on the IssueContext is null, then it is treated as a wildcard. If the issueTypeId on the IssueContext is null or an empty list, then it is treated as a wildcard.
- Parameters:
issueContext- The issue context.- Returns:
- Whether the custom field is in the scope of the given
IssueContext.
-