Interface JiraComponentInputs
- All Superinterfaces:
ComponentInputs,Map<String,Object>
- All Known Implementing Classes:
JiraComponentInputsImpl
A inputs object with well known input properties in Jira for convenience.
Changes in this class may also require additions in JiraComponentInputsDeserializer.
-
Nested Class Summary
-
Field Summary
Fields inherited from interface com.codebarrel.automation.api.component.inputs.ComponentInputs
BREACHED_RULES, BREACHED_SUMMARY, CUSTOM_SMART_VALUES, INITIATOR, ORIG_EVENT_TYPE, RAW_EVENT, WEBHOOK_RESPONSES -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCreatedIssues(List<SmartIssueBean> issues) Adds the passed issues to the list of created issues.booleanThis returns true if a component in this rule (usually trigger) has previously added issues to the context, even an empty list of issues.Methods inherited from interface com.codebarrel.automation.api.component.inputs.ComponentInputs
getEvent, getInitiatorAccountIdMethods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Method Details
-
getIssues
List<SmartIssueBean> getIssues() -
getCreatedIssues
List<SmartIssueBean> getCreatedIssues() -
isRunningInContextOfIssues
boolean isRunningInContextOfIssues()This returns true if a component in this rule (usually trigger) has previously added issues to the context, even an empty list of issues. All Jira issue events will do this. Some triggers that wont - ScheduledTrigger with no JQL search, version released, sprint closed, user added -
addCreatedIssues
Adds the passed issues to the list of created issues.
-