Class BlueIssueFactory
java.lang.Object
io.jenkins.blueocean.rest.factory.BlueIssueFactory
- All Implemented Interfaces:
ExtensionPoint
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract Collection<BlueIssue> abstract Collection<BlueIssue> getIssues(ChangeLogSet.Entry changeSetEntry) static Collection<BlueIssue> Find issues representing this job.static Collection<BlueIssue> resolve(ChangeLogSet.Entry changeSetEntry) Finds any issues associated with the changeset e.g.
-
Constructor Details
-
BlueIssueFactory
public BlueIssueFactory()
-
-
Method Details
-
getIssues
- Parameters:
job- job- Returns:
- issues
- See Also:
-
getIssues
- Parameters:
changeSetEntry- entry- Returns:
- issues
- See Also:
-
resolve
Find issues representing this job. e.g. a feature branch could take the format of "feature/TICKET-123" and be represented by TICKET-123 in JIRA Typically there is only one associated ticket- Parameters:
job- to find issues for- Returns:
- issues representing this job
-
resolve
Finds any issues associated with the changeset e.g. a commit message could be "TICKET-123 fix all the things" and be associated with TICKET-123 in JIRA- Parameters:
changeSetEntry- entry- Returns:
- issues representing the change
-